2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-12 01:55:39 +00:00

Ensure defined response (#7511)

This commit is contained in:
Oliver
2024-06-25 20:16:45 +10:00
committed by GitHub
parent da42fdf06e
commit 3ed2a4a16b

View File

@ -60,7 +60,7 @@ export function Header() {
return null;
});
setNotificationCount(response?.data?.count ?? 0);
return response?.data;
return response?.data ?? null;
} catch (error) {
return error;
}