Skip to content

Commit 9cff9a6

Browse files
author
Ema
committed
fixes
1 parent c6b73cf commit 9cff9a6

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/components/OrbitSystem.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { useState, useEffect } from 'react';
2-
import { useNavigate } from 'react-router';
32
import { Heart } from 'lucide-react';
43
import { mockAliens } from '../data/mockAliens';
54
import type { AlienProfile } from '../data/mockAliens';
@@ -13,7 +12,6 @@ import { getScientificWarnings } from '../utils/scienceWarnings';
1312
export default function OrbitSystem() {
1413

1514
const { preferences, addMatch, matches } = useAppContext();
16-
const navigate = useNavigate();
1715
const triggerRocketNav = useRocketNav();
1816
const [selectedAlien, setSelectedAlien] = useState<AlienProfile | null>(null);
1917
const [dismissedIds, setDismissedIds] = useState<Set<string>>(new Set());

src/components/Starfield.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const Starfield = () => {
8282

8383
ctx.beginPath();
8484
ctx.arc(star.x, star.y, star.size, 0, Math.PI * 2);
85-
ctx.fillStyle = `rgba(217, 3, 104, ${currentOpacity})`;
85+
ctx.fillStyle = `rgba(255, 255, 255, ${currentOpacity})`;
8686
ctx.fill();
8787
}
8888

0 commit comments

Comments
 (0)