Skip to content

Commit 3c121fa

Browse files
fix: build
1 parent d06a866 commit 3c121fa

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/course/02- lessons/01-Bronze/StateColocationVsStateLifting/exercise/components/Form.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ export const Form = () => {
2626
};
2727

2828
// 💣 We can get rid of the eslint line once we start using the type param.
29+
// eslint-disable-next-line @typescript-eslint/no-unused-vars, @typescript-eslint/ban-ts-comment
30+
// @ts-ignore
2931
// eslint-disable-next-line @typescript-eslint/no-unused-vars
3032
const onPokemonTypeSelection = (type: string) => {
3133
// 🧑🏻‍💻 1.e: we need to check IF the selectedPokemonTypes already has the selectedType

src/course/02- lessons/01-Bronze/StateColocationVsStateLifting/exercise/components/PokemonOptions.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ export const PokemonOptions = ({ type }: IPokemonOptions) => {
3333
};
3434

3535
// 💣 Can remove this comment once the code has been written
36+
// eslint-disable-next-line @typescript-eslint/no-unused-vars, @typescript-eslint/ban-ts-comment
37+
// @ts-ignore
3638
// eslint-disable-next-line @typescript-eslint/no-unused-vars
3739
const togglePokemonSelection = (pokemonId: string) => {
3840
// 🧑🏻‍💻 2.g: We need to now update the state for when a pokemon card is selected or not.

0 commit comments

Comments
 (0)