diff --git a/client/backups/index.html b/client/backups.html
similarity index 100%
rename from client/backups/index.html
rename to client/backups.html
diff --git a/routes/backups.js b/routes/backups.js
index 2ec5d59e..d964e124 100644
--- a/routes/backups.js
+++ b/routes/backups.js
@@ -2,7 +2,7 @@ import { Router } from 'express';
const router = Router();
router.get('/', (_req, res) => {
- res.sendFile('index.html', { root: './client/backups' });
+ res.sendFile('backups.html', { root: './client' });
});
export default router;