Skip to content

Commit

Permalink
fix: background type (#4)
Browse files Browse the repository at this point in the history
Description
---
Typo on the background type

Motivation and Context
---

How Has This Been Tested?
---

What process can a PR reviewer use to test or verify this change?
---

<!-- Checklist -->
<!-- 1. Is the title of your PR in the form that would make nice release
notes? The title, excluding the conventional commit
tag, will be included exactly as is in the CHANGELOG, so please think
about it carefully. -->


Breaking Changes
---
x

- [x] None
- [ ] Requires data directory on base node to be deleted
- [ ] Requires hard fork
- [ ] Other - Please specify

<!-- Does this include a breaking change? If so, include this line as a
footer -->
<!-- BREAKING CHANGE: Description what the user should do, e.g. delete a
database, resync the chain -->
  • Loading branch information
NovaT82 authored Jul 30, 2024
1 parent 93486c6 commit 3303083
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 3303083

Please sign in to comment.