Skip to content

Commit

Permalink
fix typo + remove semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
norswap committed Feb 26, 2024
1 parent 7edd730 commit ff0d1b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Fake contract deploymment
- name: Fake contract deployment
run: mkdir -p packages/contracts/out && echo "{}" > packages/contracts/out/deployment.json
- run: make setup
- run: make check
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/src/pages/collection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Collection: FablePage = ({ decks, isHydrated }) => {
const [ effectMap, setEffectMap ] = useState(initialEffectMap)
const [ typeMap, setTypeMap ] = useState(initialTypeMap)

const router = useRouter();
const router = useRouter()

const cardName = selectedCard?.lore.name || "Select a card"
const cardFlavor = selectedCard?.lore.flavor || "Select a card to see its details"
Expand Down

0 comments on commit ff0d1b5

Please sign in to comment.