Skip to content

Commit

Permalink
dumb fuck juice
Browse files Browse the repository at this point in the history
  • Loading branch information
diogotr7 committed May 16, 2024
1 parent bf194de commit c7d16e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/LoadDefault.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Button, Group, Text } from '@mantine/core'
import '@mantine/dropzone/styles.css'
import { useCharacterStore } from '../useCharacterStore'
import { getDefaultMale } from '../testFile'
import { getDefaultFemale, getDefaultMale } from '../testFile'

export function LoadDefault() {
const loadCharacter = useCharacterStore(state => state.loadCharacter)
Expand All @@ -12,7 +12,7 @@ export function LoadDefault() {
<Button variant="default" size="sm" onClick={() => loadCharacter(getDefaultMale())}>
Load Default M
</Button>
<Button variant="default" size="sm" onClick={() => loadCharacter(getDefaultMale())}>
<Button variant="default" size="sm" onClick={() => loadCharacter(getDefaultFemale())}>
Load Default F
</Button>
</Group>
Expand Down

0 comments on commit c7d16e5

Please sign in to comment.