Skip to content

Commit 91ab37c

Browse files
committed
chore: fixing unnecessary dot folders
1 parent 71e95e8 commit 91ab37c

File tree

4 files changed

+28
-107
lines changed

4 files changed

+28
-107
lines changed

.gitignore

Lines changed: 18 additions & 99 deletions
Original file line numberDiff line numberDiff line change
@@ -1,112 +1,31 @@
1-
# Binaries for programs and plugins
2-
*.exe
3-
*.exe~
4-
*.dll
5-
*.so
6-
*.dylib
7-
8-
# Test binary, built with `go test -c`
9-
*.test
10-
11-
# Output of the go coverage tool, specifically when used with LiteIDE
12-
*.out
13-
14-
# Dependency directories (remove the comment below to include it)
15-
# vendor/
16-
17-
# Go workspace file
18-
go.work
19-
20-
# IDE files
21-
.vscode/
22-
.idea/
23-
*.swp
24-
*.swo
25-
*~
26-
27-
# OS generated files
28-
.DS_Store
29-
.DS_Store?
30-
._*
31-
.Spotlight-V100
32-
.Trashes
33-
ehthumbs.db
34-
Thumbs.db
1+
# Dependencies
2+
node_modules/
353

36-
# Environment variables
4+
# Environment
375
.env
386
.env.local
39-
.env.development.local
40-
.env.test.local
41-
.env.production.local
7+
.env.*.local
428

439
# Logs
44-
logs
4510
*.log
4611
npm-debug.log*
47-
yarn-debug.log*
48-
yarn-error.log*
49-
50-
# Runtime data
51-
pids
52-
*.pid
53-
*.seed
54-
*.pid.lock
55-
56-
# Coverage directory used by tools like istanbul
57-
coverage/
58-
*.lcov
59-
60-
# nyc test coverage
61-
.nyc_output
62-
63-
# Dependency directories
64-
node_modules/
65-
66-
# Optional npm cache directory
67-
.npm
6812

69-
# Optional REPL history
70-
.node_repl_history
71-
72-
# Output of 'npm pack'
73-
*.tgz
74-
75-
# Yarn Integrity file
76-
.yarn-integrity
77-
78-
# parcel-bundler cache (https://parceljs.org/)
79-
.cache
80-
.parcel-cache
81-
82-
# next.js build output
83-
.next
84-
85-
# nuxt.js build output
86-
.nuxt
87-
88-
# vuepress build output
89-
.vuepress/dist
90-
91-
# Serverless directories
92-
.serverless
93-
94-
# FuseBox cache
95-
.fusebox/
96-
97-
# DynamoDB Local files
98-
.dynamodb/
13+
# Build outputs (Vite)
14+
dist/
15+
build/
9916

100-
# TernJS port file
101-
.tern-port
17+
# OS
18+
.DS_Store
19+
Thumbs.db
10220

103-
# Stores VSCode versions used for testing VSCode extensions
104-
.vscode-test
21+
# IDE
22+
.vscode/
23+
.idea/
24+
.cursor/
25+
.github/
26+
*.swp
27+
*~
10528

106-
# Temporary folders
29+
# Temporary
10730
tmp/
10831
temp/
109-
110-
# Build outputs
111-
dist/
112-
build/

frontend/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ dist-ssr
2222
*.njsproj
2323
*.sln
2424
*.sw?
25+
26+
.env

frontend/package-lock.json

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

frontend/src/components/room/ChatArea.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ScrollArea } from "@/components/ui/scroll-area";
22
import { Input } from "@/components/ui/input";
33
import { Button } from "@/components/ui/button";
44
import { Send } from "lucide-react";
5-
import { useState } from "react";
5+
import React, { useState } from "react";
66
import { type Message } from "@/hooks/useMockRoom";
77

88
interface ChatAreaProps {

0 commit comments

Comments
 (0)