From 09e5164c79a9983a6e37f509e0e8bce1885456c3 Mon Sep 17 00:00:00 2001 From: Dominic Zimmer Date: Thu, 23 Mar 2023 17:46:14 +0100 Subject: [PATCH] Disable debug mode --- src/PartyPage.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/PartyPage.tsx b/src/PartyPage.tsx index 8bb83ea..7d695c0 100644 --- a/src/PartyPage.tsx +++ b/src/PartyPage.tsx @@ -2,9 +2,7 @@ import React, { useContext, useState } from 'react'; import { APIEndPoint, PartyContext } from './PartyContext'; import './PartyPage.css'; -import { enableDebugMode, modifySelfRequest, parseURI } from './partyApi'; - -enableDebugMode(); +import { modifySelfRequest, parseURI } from './partyApi'; export const PartyPage: React.FC = () => { const {self} = useContext(PartyContext); @@ -69,4 +67,4 @@ export const PartyPage: React.FC = () => { -}; \ No newline at end of file +};