Skip to content

Commit 9bd18cf

Browse files
fix(TS): Changed strings to boleans
1 parent 6daec4e commit 9bd18cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pages/ingredients.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export default function ingredients() {
99
<div id="modal-root"></div>
1010
<Nav />
1111
<Container
12-
logo="false"
13-
backbutton="false"
12+
logo={false}
13+
backbutton={false}
1414
>
1515
<IngredientsCheck />
1616
</Container>

src/pages/more.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default function More() {
2626
<>
2727
<div id="modal-root"></div>
2828
<Nav />
29-
<Container logo="false" backbutton="false">
29+
<Container logo={false} backbutton={false}>
3030
<div className="Grid links">
3131
<ModalWrapper
3232
id="donate"

0 commit comments

Comments
 (0)