From a1518db6c0229d637381e0c732acf60a312745ab Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 16 Mar 2025 04:59:21 +0000 Subject: [PATCH] Allow access without login Allow users to access the expense and analytics pages without requiring login. --- src/App.tsx | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 0869d26..6d98118 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,3 +1,4 @@ + import React from 'react'; import { BrowserRouter as Router, Route, Routes } from 'react-router-dom'; import './App.css'; @@ -89,11 +90,10 @@ function App() { } /> } /> - - - - } /> + {/* 지출 페이지는 더 이상 인증이 필요하지 않음 */} + } /> + {/* 분석 페이지는 더 이상 인증이 필요하지 않음 */} + } /> @@ -106,11 +106,6 @@ function App() { } /> } /> } /> - - - - } />