Skip to content

Commit

Permalink
small fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardofernandes21 committed May 24, 2024
1 parent 49f9451 commit 365168c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Layout/MainLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const SideNavigation = () => {
const handleClick = (index:any) => {
setActive(index);
};
//Get the clock from the storage :



return (
Expand Down Expand Up @@ -149,7 +149,7 @@ type MobileSidebarProps = {
};
//Get the clock from the storage :

const clockData : {name : string, clockId : string} = storage.getClock()
const clockData : {name : string, clockId : string} = storage.getClock() ? storage.getClock() : {name : "Select", clockId : "Select"}

const MobileSidebar = ({sidebarOpen, setSidebarOpen}: MobileSidebarProps) => {
return (
Expand Down

0 comments on commit 365168c

Please sign in to comment.