chore: add missing pieces for profile reporting and fix formatting

- Added Reports link to admin dropdown menu
- Fixed log route path (changed from '/log' to '/')
- Exported report types from shared-types index
- Fixed whitespace alignment in auth and game types
- Fixed formatting in e2e test files (newlines, comment style)
This commit is contained in:
2026-02-19 18:38:16 -08:00
committed by Naomi Carrigan
parent d797d38ddd
commit 8f569e0bb4
10 changed files with 56 additions and 42 deletions
+6 -1
View File
@@ -4,4 +4,9 @@
* @license Naomi's Public License
*/
export const getGreeting = (): Cypress.Chainable => cy.get("h1");
/**
*
*/
export const getGreeting = (): Cypress.Chainable => {
return cy.get("h1");
};