Skip to content

Commit

Permalink
fix: background type
Browse files Browse the repository at this point in the history
  • Loading branch information
NovaT82 committed Jul 30, 2024
1 parent 93486c6 commit 6ae37b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/containers/AppBackground/AppBackground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import determining from '../../assets/backgrounds/determining.jpg';
import mining from '../../assets/backgrounds/mining.jpg';
import loser from '../../assets/backgrounds/loser.jpg';
import winner from '../../assets/backgrounds/winner.jpg';
import { appStateType } from '../../store/types';
import { backgroundType } from '../../store/types';

const AppContainer = styled(Box)(
({ theme, status }: { theme: any; status: any }) => ({
Expand Down Expand Up @@ -44,7 +44,7 @@ function AppBackground({
status,
}: {
children: React.ReactNode;
status: appStateType;
status: backgroundType;
}) {
const theme = useTheme();

Expand Down

0 comments on commit 6ae37b1

Please sign in to comment.