chore: undo unrelated button change

This commit is contained in:
Yaros
2026-06-27 15:36:28 +02:00
parent 0b68e1376a
commit 58d1373a04

View File

@@ -300,13 +300,10 @@ export const stackAssets = async (assets: { id: string }[], showNotification = t
if (showNotification) {
toastManager.primary({
description: $t('stacked_assets_count', { values: { count: stack.assets.length } }),
button: (close) => ({
button: {
label: $t('view_stack'),
onclick: async () => {
await navigate({ targetRoute: 'current', assetId: stack.primaryAssetId });
close();
},
}),
onclick: () => navigate({ targetRoute: 'current', assetId: stack.primaryAssetId }),
},
});
}