Skip to content

Commit

Permalink
fix(api): use correct base route
Browse files Browse the repository at this point in the history
  • Loading branch information
Gijsdeman committed Nov 10, 2024
1 parent 93ffcbe commit f990568
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@ import { BrowserRouter } from 'react-router-dom';
import AuthContextProvider from './contexts/AuthContext';
import HandlerSwitcher from './HandlerSwitcher';
import ErrorBoundary from './ErrorBoundary';
import { client } from './api';

export default function App() {
client.setConfig({
baseUrl: '/api',
});

return (
<ErrorBoundary>
<BrowserRouter>
Expand Down

0 comments on commit f990568

Please sign in to comment.