Skip to content

Commit 022f0c5

Browse files
author
Build Agent
committed
fix: resolve TypeScript build errors - remove unused imports and fix lucide-react Fire icon
1 parent 6749cfe commit 022f0c5

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/pages/play/Confessions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { useState, useEffect, useRef } from 'react';
1+
import { useState, useRef } from 'react';
22
import { Button } from '@/components/ui/button';
33
import { Input } from '@/components/ui/input';
44
import { Card } from '@/components/ui/card';

src/pages/play/MidnightThoughts.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Navbar from '@/components/Navbar';
55
import { motion, AnimatePresence } from 'framer-motion';
66
import ViralShare from '@/components/viral/ViralShare';
77
import { triggerConfetti } from '@/lib/viralUtils';
8-
import { MoonStar, Sparkles, RefreshCw } from 'lucide-react';
8+
import { MoonStar, Sparkles } from 'lucide-react';
99

1010
const thoughts = [
1111
"If you clean a vacuum cleaner, you are the vacuum cleaner.",

src/pages/play/Playground.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { motion } from 'framer-motion';
77
import { useStreak } from '@/hooks/useStreak';
88
import { useState, useEffect } from 'react';
99
import {
10-
ScanFace, TreePine, Cookie, Flame, Languages, Sparkles, Swords, Radar, Volume2, ArrowLeftRight, Skull, Zap, MoonStar, Glasses, BatteryCharging, ArrowRight, TrendingUp, Fire, Star
10+
ScanFace, TreePine, Cookie, Flame, Languages, Sparkles, Swords, Radar, Volume2, ArrowLeftRight, Skull, Zap, MoonStar, Glasses, BatteryCharging, ArrowRight, TrendingUp, Star
1111
} from 'lucide-react';
1212

1313
const features = [
@@ -61,7 +61,7 @@ export default function Playground() {
6161
className="text-center max-w-2xl mx-auto"
6262
>
6363
<Badge className="mb-4 bg-emerald-500/20 text-emerald-300 border-emerald-500/30 px-4 py-1.5">
64-
<Fire className="h-3 w-3 mr-1.5" />
64+
<Flame className="h-3 w-3 mr-1.5" />
6565
Viral Playground
6666
</Badge>
6767
<h1 className="text-4xl md:text-6xl font-bold text-white mb-4 tracking-tight">

src/pages/play/Soundboard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { useState, useRef, useCallback } from 'react';
1+
import { useState, useCallback } from 'react';
22
import { Button } from '@/components/ui/button';
33
import Navbar from '@/components/Navbar';
44
import { motion } from 'framer-motion';

src/pages/play/ThisOrThat.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { useState, useEffect } from 'react';
1+
import { useState } from 'react';
22
import { Button } from '@/components/ui/button';
33
import { Card } from '@/components/ui/card';
44
import Navbar from '@/components/Navbar';
5-
import { motion, AnimatePresence } from 'framer-motion';
5+
import { motion } from 'framer-motion';
66
import ViralShare from '@/components/viral/ViralShare';
7-
import { Swords, TrendingUp, Users } from 'lucide-react';
7+
import { Swords, Users } from 'lucide-react';
88

99
interface Duel {
1010
id: string;

0 commit comments

Comments
 (0)