chore: removed unnecessary and unused vars (#177)

This commit is contained in:
Vojtech Simetka
2021-08-23 15:57:54 +02:00
committed by GitHub
parent 739fc45500
commit 7f2ff39ec9
2 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -16,8 +16,8 @@ const initialValues: ContextInterface = {
sessionStorage.getItem('debug_api_host') || process.env.REACT_APP_BEE_DEBUG_HOST || 'http://localhost:1635',
beeApi: null,
beeDebugApi: null,
setApiUrl: (url: string) => {}, // eslint-disable-line
setDebugApiUrl: (url: string) => {}, // eslint-disable-line
setApiUrl: () => {}, // eslint-disable-line
setDebugApiUrl: () => {}, // eslint-disable-line
}
export const Context = createContext<ContextInterface>(initialValues)