Skip to content

Commit

Permalink
Minor fixes. Thanks to Kirq for spotting. (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfman2000 authored Jun 29, 2024
1 parent f650d1e commit 536d4d1
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 63 deletions.
121 changes: 62 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lanky-tracker",
"version": "5.0.0",
"version": "5.0.1",
"description": "An DK 64 Rando Tracker Electron application with React and TypeScript",
"main": "./out/main/index.js",
"author": "wolfman2000",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useDkBlastGb } from '@renderer/hooks/aztec'
import { useDkBlastGb } from '@renderer/hooks/galleon'
import GalleonCheck from '../../check'

const FreeSeal: React.FC = () => {
Expand Down
3 changes: 1 addition & 2 deletions src/renderer/src/hooks/galleon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
useBongos,
useBoulderTech,
useCamera,
useDiddy,
useDive,
useDk,
useFtaChunkyBlueprint,
Expand Down Expand Up @@ -310,7 +309,7 @@ export const useDk5DoorShipGb = (): boolean => {
export const useLankyChestGb = (): boolean => {
const lighthouse = useGalleonLighthouseArea()
const lanky = useLanky()
const dive = useDiddy()
const dive = useDive()
return lighthouse && lanky && dive
}

Expand Down

0 comments on commit 536d4d1

Please sign in to comment.