Skip to content

Commit

Permalink
Fixing build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchand-Nicolas committed Aug 9, 2023
1 parent d1e2003 commit e0e3d5f
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion components/quests/quizzes/endScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FunctionComponent } from "react";
import React, { FunctionComponent } from "react";
import Menu from "./menu";
import styles from "../../../styles/components/quests/quizzes.module.css";
import Button from "../../UI/button";
Expand Down
8 changes: 4 additions & 4 deletions components/quests/quizzes/homeScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FunctionComponent } from "react";
import React, { FunctionComponent } from "react";
import QuizControls from "./quizControls";
import Menu from "./menu";
import styles from "../../../styles/components/quests/quizzes.module.css";
Expand All @@ -20,9 +20,9 @@ const HomeScreen: FunctionComponent<HomeScreenProps> = ({ move, quit }) => {
<p>
Welcome to the Uniswap Unraveled quiz – an exhilarating journey into
the heart of decentralized finance (DeFi). Test your knowledge, dive
into Uniswap's ecosystem, and unlock the secrets of DeFi. Get ready
to become a DeFi expert as you answer questions and earn rewards.
Are you up for the challenge? Let's get started!
into Uniswap&apos;s ecosystem, and unlock the secrets of DeFi. Get
ready to become a DeFi expert as you answer questions and earn
rewards. Are you up for the challenge? Let&apos;s get started!
</p>
</Menu>
</div>
Expand Down
3 changes: 1 addition & 2 deletions components/quests/quizzes/menu.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { FunctionComponent, ReactNode } from "react";
import React, { FunctionComponent, ReactNode } from "react";
import styles from "../../../styles/components/quests/quizzes.module.css";
import Button from "../../UI/button";

type MenuProps = {
title: string;
Expand Down
2 changes: 1 addition & 1 deletion components/quests/quizzes/progressBar.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FunctionComponent } from "react";
import React, { FunctionComponent } from "react";
import styles from "../../../styles/components/quests/progressBar.module.css";
import CheckMarkIcon from "../../UI/iconsComponents/icons/checkMarkIcon";

Expand Down
2 changes: 1 addition & 1 deletion components/quests/quizzes/quizControls.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FunctionComponent } from "react";
import React, { FunctionComponent } from "react";
import styles from "../../../styles/components/quests/quizzes.module.css";

type QuizControlsProps = {
Expand Down
2 changes: 1 addition & 1 deletion components/quests/quizzes/step.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FunctionComponent } from "react";
import React, { FunctionComponent } from "react";
import QuizControls from "./quizControls";
import styles from "../../../styles/components/quests/quizzes.module.css";
import ProgressBar from "./progressBar";
Expand Down
2 changes: 1 addition & 1 deletion pages/quest/[questPage]/quiz/[quizPage].tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NextPage } from "next";
import React, { NextPage } from "next";
import { useRouter } from "next/router";
import HomeScreen from "../../../../components/quests/quizzes/homeScreen";
import styles from "../../../../styles/components/quests/quizzes.module.css";
Expand Down

0 comments on commit e0e3d5f

Please sign in to comment.