Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 837bb04

Browse files
committedNov 23, 2024
Feat (backend) moved backend
1 parent 463cb6d commit 837bb04

File tree

16 files changed

+190
-95
lines changed

16 files changed

+190
-95
lines changed
 

‎backend/server.js

Lines changed: 0 additions & 48 deletions
This file was deleted.
File renamed without changes.

‎frontend/package-lock.json

Lines changed: 52 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎frontend/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13+
"assemblyai": "^4.8.0",
1314
"axios": "^1.7.7",
1415
"class-variance-authority": "^0.7.0",
1516
"lucide-react": "^0.460.0",
1617
"radix-ui": "^1.0.1",
1718
"react": "^18.3.1",
1819
"react-dom": "^18.3.1",
1920
"react-markdown": "^9.0.1",
21+
"react-router-dom": "^7.0.1",
2022
"recharts": "^2.13.3",
2123
"tailwind-merge": "^2.5.4"
2224
},

‎frontend/src/components/pages/homePage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Button } from "../ui/button";
2-
import { Menu, User, LogOut, Trash2 } from "lucide-react";
2+
import { Menu, User, Trash2 } from "lucide-react";
33
import { useState, useEffect } from "react";
44
import { Card } from "../ui/card";
55
import { AnalysisResults } from "../../services/api";
@@ -150,7 +150,7 @@ export function HomePage() {
150150
paddingAngle={5}
151151
dataKey="value"
152152
>
153-
{talkRatioData.map((entry, index) => (
153+
{talkRatioData.map((_, index) => (
154154
<Cell
155155
key={`cell-${index}`}
156156
fill={COLORS[index % COLORS.length]}

0 commit comments

Comments
 (0)
Please sign in to comment.