From 64e1aa295ad9a5b9c4ac55677c6c406fbfacb93d Mon Sep 17 00:00:00 2001 From: Ioan Chelaru Cristian Date: Sun, 2 Jun 2024 01:21:06 +0300 Subject: [PATCH] removed the ip address Signed-off-by: Ioan Chelaru Cristian --- app/components/results.tsx | 2 +- app/lib/session.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/components/results.tsx b/app/components/results.tsx index 99932d8..06e4bc4 100644 --- a/app/components/results.tsx +++ b/app/components/results.tsx @@ -62,7 +62,7 @@ const ResultScreen = ({state}: {state: SessionState}) => {

You did it!

Here are the results: -

ultra@100.126.110.60 +

On this page you can see what you did at the quiz. We'll give your wrong questions again, another time!

diff --git a/app/lib/session.ts b/app/lib/session.ts index e6b356d..e11d60d 100644 --- a/app/lib/session.ts +++ b/app/lib/session.ts @@ -16,7 +16,6 @@ export type SessionState = { category: string; opened: boolean[]; answer: AnswerType[]; - index: number; } export const getSession = async (id: number): Promise => {