Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Frontend</title>
<title>SSF</title>
<base href="/" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down
Binary file modified apps/frontend/public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions apps/frontend/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const router = createBrowserRouter([

export const App: React.FC = () => {
useEffect(() => {
document.title = 'SSF';
apiClient.getHello().then((res) => console.log(res));
}, []);

Expand Down