removed the ip address

Signed-off-by: Ioan Chelaru Cristian <iccjoc@localhost.localdomain>
This commit is contained in:
Ioan Chelaru Cristian 2024-06-02 01:21:06 +03:00
parent 9e07238ddc
commit 64e1aa295a
2 changed files with 1 additions and 2 deletions

View file

@ -62,7 +62,7 @@ const ResultScreen = ({state}: {state: SessionState}) => {
<h2 className="text-base font-semibold leading-7 text-indigo-300">You did it!</h2>
<p className="mt-2 text-3xl font-bold tracking-tight text-gray-100 sm:text-4xl">
Here are the results:
</p>ultra@100.126.110.60
</p>
<p className="mt-6 text-lg leading-8 text-gray-600">
On this page you can see what you did at the quiz. We'll give your wrong questions again, another time!
</p>

View file

@ -16,7 +16,6 @@ export type SessionState = {
category: string;
opened: boolean[];
answer: AnswerType[];
index: number;
}
export const getSession = async (id: number): Promise<Session> => {