Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasMaupin committed Sep 12, 2024
1 parent c786298 commit be99113
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/inventory/Inventory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export default function Inventory() {
source={currentSource}
updateSource={(source) => setUpdatedSource(source)}
close={() => setCurrentSource(null)}
removeInventorySource={removeInventorySource}
/>
</div>
) : null}
Expand Down
8 changes: 6 additions & 2 deletions src/contexts/GlobalContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ interface IGlobalContext {
export const GlobalContext = createContext<IGlobalContext>({
locked: false,
imageRefetchIndex: 0,
incrementImageRefetchIndex: () => {},
toggleLocked: () => {}
incrementImageRefetchIndex: () => {
// outsmarting lint
},
toggleLocked: () => {
// outsmarting lint
}
});

const GlobalContextProvider = (props: PropsWithChildren) => {
Expand Down

0 comments on commit be99113

Please sign in to comment.