From e213d34c03fe6a2cc1cac782c09f7a0152239377 Mon Sep 17 00:00:00 2001 From: Nithin U <106614289+NithinU2802@users.noreply.github.com> Date: Tue, 7 Oct 2025 01:38:27 +0530 Subject: [PATCH] Fixing rights year static to dynamic (#620) --- src/pages/BugReport.jsx | 2 +- src/pages/LandingPage.jsx | 2 +- src/pages/Templates.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/BugReport.jsx b/src/pages/BugReport.jsx index 20a6a56..0e8969b 100644 --- a/src/pages/BugReport.jsx +++ b/src/pages/BugReport.jsx @@ -245,7 +245,7 @@ export default function BugReport() { } my-1`} />
- © 2024 drawDB - All right reserved. + © {new Date().getFullYear()} drawDB - All rights reserved.
); diff --git a/src/pages/LandingPage.jsx b/src/pages/LandingPage.jsx index 48158ea..2638d73 100644 --- a/src/pages/LandingPage.jsx +++ b/src/pages/LandingPage.jsx @@ -301,7 +301,7 @@ export default function LandingPage() {
- © 2024 drawDB - All right reserved. + © {new Date().getFullYear()} drawDB - All rights reserved.
); diff --git a/src/pages/Templates.jsx b/src/pages/Templates.jsx index e87a8e3..5622d6d 100644 --- a/src/pages/Templates.jsx +++ b/src/pages/Templates.jsx @@ -192,7 +192,7 @@ export default function Templates() {
- © 2024 drawDB - All right reserved. + © {new Date().getFullYear()} drawDB - All rights reserved.
);