Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
lhvy committed Dec 23, 2024
1 parent cfb6ad5 commit 4087bc0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion client/src/components/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,10 @@ const Sidebar: React.FC = () => {
{!collapsed ? (
<SidebarFooterText>
<Divider />
<span>{import.meta.env.VITE_COMMIT?.substring(0, 7) ?? 'unknown commit'}</span>
<span>
© DevSoc {new Date().getFullYear()}, v1.0.0,{' '}
{import.meta.env.VITE_COMMIT?.substring(0, 7) ?? 'unknown commit'}
</span>
</SidebarFooterText>
) : (
<CollapseButton collapsed={collapsed} onClick={() => handleCollapse(false)} toolTipTitle="Expand" />
Expand Down

0 comments on commit 4087bc0

Please sign in to comment.