qick fix for the duplicate bin functionality on the dasboard, for admin users, so that it stop going to the bin page when you click on the duplicate button

This commit is contained in:
csawatzky 2025-07-18 11:33:30 -06:00
parent 67cafbe2ed
commit cd96d783ed
2 changed files with 7 additions and 3 deletions

View file

@ -516,7 +516,7 @@ export default function Bins(props: Props) {
const duplicateBin = (bin: Bin) => {
binAPI.addBin(bin.settings, as).then(resp => {
loadBins();
loadMoreBins(contentFilter);
});
};