We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fda7fd commit fac9956Copy full SHA for fac9956
client/src/components/sidebar/Sidebar.tsx
@@ -248,7 +248,10 @@ const Sidebar: React.FC = () => {
248
{!collapsed ? (
249
<SidebarFooterText>
250
<Divider />
251
- <span>{import.meta.env.VITE_COMMIT?.substring(0, 7) ?? 'unknown commit'}</span>
+ <span>
252
+ © DevSoc {new Date().getFullYear()}, v1.0.0,{' '}
253
+ {import.meta.env.VITE_COMMIT?.substring(0, 7) ?? 'unknown commit'}
254
+ </span>
255
</SidebarFooterText>
256
) : (
257
<CollapseButton collapsed={collapsed} onClick={() => handleCollapse(false)} toolTipTitle="Expand" />
0 commit comments