Merge branch 'dev-main' into dev-kartik

This commit is contained in:
Kartik Datrika
2026-03-25 11:48:00 +05:30
6 changed files with 83 additions and 72 deletions

View File

@@ -143,9 +143,9 @@ export const Sidebar = ({ activeUrl = "/" }: SidebarProps) => {
setLogoutOpen(true);
};
const confirmSignOut = () => {
const confirmSignOut = async () => {
setLogoutOpen(false);
logout();
await logout();
navigate("/login");
};