Merge branch 'big-nate/bus-1521-couple-bugz-with-three-dot-menu' of https://github.com/buster-so/buster into big-nate/bus-1521-couple-bugz-with-three-dot-menu

This commit is contained in:
Nate Kelley 2025-07-26 10:23:39 -06:00
commit 1608547a3e
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ const useCollectionSelectMenu = ({ dashboardId }: { dashboardId: string }) => {
const { mutateAsync: removeDashboardFromCollection } = useRemoveDashboardFromCollection();
const { data: selectedCollections } = useGetDashboard(
{ id: dashboardId },
{ select: (x) => x.collections?.map((x) => x.id) }
{ select: (x) => x.collections?.map((collection) => collection.id) }
);
const { openInfoMessage } = useBusterNotifications();