Disable debug mode
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Dominic Zimmer 2023-03-23 17:46:14 +01:00
parent 7c64e4e107
commit 09e5164c79

View File

@ -2,9 +2,7 @@
import React, { useContext, useState } from 'react'; import React, { useContext, useState } from 'react';
import { APIEndPoint, PartyContext } from './PartyContext'; import { APIEndPoint, PartyContext } from './PartyContext';
import './PartyPage.css'; import './PartyPage.css';
import { enableDebugMode, modifySelfRequest, parseURI } from './partyApi'; import { modifySelfRequest, parseURI } from './partyApi';
enableDebugMode();
export const PartyPage: React.FC = () => { export const PartyPage: React.FC = () => {
const {self} = useContext(PartyContext); const {self} = useContext(PartyContext);
@ -69,4 +67,4 @@ export const PartyPage: React.FC = () => {
</article> </article>
</section> </section>
</main> </main>
}; };