From 5806c1b500e7555639f019f72ad2bb10d06abff7 Mon Sep 17 00:00:00 2001 From: JManion32 Date: Sun, 8 Mar 2026 22:54:33 -0400 Subject: [PATCH 1/2] Fix deployment? --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 9bbc7ad..80ce5b8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -13,7 +13,7 @@ function App() { <> - + }> } /> From a01929888f44469c350a76e3d72ee04ebe43d4cc Mon Sep 17 00:00:00 2001 From: JManion32 Date: Sun, 8 Mar 2026 22:57:47 -0400 Subject: [PATCH 2/2] Fix Cypress --- cypress/e2e/events/events.cy.ts | 2 +- cypress/e2e/home/home.cy.ts | 2 +- cypress/e2e/organizations/organizations.cy.ts | 2 +- cypress/e2e/profile/profile.cy.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cypress/e2e/events/events.cy.ts b/cypress/e2e/events/events.cy.ts index 1b0f756..a6b30a5 100644 --- a/cypress/e2e/events/events.cy.ts +++ b/cypress/e2e/events/events.cy.ts @@ -1,6 +1,6 @@ describe('Event Page', () => { it('displays the correct main title', () => { - cy.visit('localhost:5173/events'); + cy.visit('localhost:5173/app/events'); cy.contains('my events'); }); diff --git a/cypress/e2e/home/home.cy.ts b/cypress/e2e/home/home.cy.ts index 22426e3..4925a63 100644 --- a/cypress/e2e/home/home.cy.ts +++ b/cypress/e2e/home/home.cy.ts @@ -1,6 +1,6 @@ describe('Home Page', () => { it('displays the correct main title', () => { - cy.visit('localhost:5173'); + cy.visit('localhost:5173/app'); cy.contains('UserId:'); }); diff --git a/cypress/e2e/organizations/organizations.cy.ts b/cypress/e2e/organizations/organizations.cy.ts index 61e4f53..b620c29 100644 --- a/cypress/e2e/organizations/organizations.cy.ts +++ b/cypress/e2e/organizations/organizations.cy.ts @@ -1,6 +1,6 @@ describe('Organizations Page', () => { it('displays the correct main title', () => { - cy.visit('localhost:5173/organizations'); + cy.visit('localhost:5173/app/organizations'); cy.contains('my orgs'); }); diff --git a/cypress/e2e/profile/profile.cy.ts b/cypress/e2e/profile/profile.cy.ts index b10553c..75bdcba 100644 --- a/cypress/e2e/profile/profile.cy.ts +++ b/cypress/e2e/profile/profile.cy.ts @@ -1,6 +1,6 @@ describe('Profile Page', () => { it('displays the correct main title', () => { - cy.visit('localhost:5173/profile'); + cy.visit('localhost:5173/app/profile'); cy.get('h1').should('contain', 'Profile'); });