diff --git a/context/AppContext.tsx b/context/AppContext.tsx deleted file mode 100644 index ab66c95c..00000000 --- a/context/AppContext.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { createContext } from 'react' - -const AppContext = createContext({ - authenticated: false, - editable: false, - setAuthenticated: (auth: boolean) => {}, - setEditable: (editable: boolean) => {} -}) - -export default AppContext \ No newline at end of file diff --git a/context/PartyContext.tsx b/context/PartyContext.tsx deleted file mode 100644 index 87599c19..00000000 --- a/context/PartyContext.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import { createContext } from 'react' -import { TeamElement } from '~utils/enums' - -const PartyContext = createContext({ - id: '', - setId: (id: string) => {}, - slug: '', - setSlug: (slug: string) => {}, - element: TeamElement.Any, - setElement: (element: TeamElement) => {}, - editable: false, - setEditable: (editable: boolean) => {}, - hasExtra: false, - setHasExtra: (hasExtra: boolean) => {} -}) - -export default PartyContext \ No newline at end of file