Skip to content

Commit

Permalink
Replace static year value with dynamic value of current year
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyTripleA committed Jan 8, 2025
1 parent 552fffd commit b981ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/layout/footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function Footer () {
))}
</div>)
: null}
<p className={'Footer__Copyright'}>2024 © Dash Platform Explorer v{version} MIT LICENCE</p>
<p className={'Footer__Copyright'}>{new Date().getFullYear()} © Dash Platform Explorer v{version} MIT LICENCE</p>
</Flex>
</Box>
)
Expand Down

0 comments on commit b981ba3

Please sign in to comment.