File tree Expand file tree Collapse file tree
packages/openops/src/lib/openops-tables Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ export const OPENOPS_DEFAULT_DATABASE_NAME = 'OpenOps Dataset';
1010
1111async function getDefaultDatabaseIdInternal (
1212 token : string ,
13- autheticationHeaderCallback : ( token : string ) => AxiosHeaders ,
13+ authenticationHeaderCallback : ( token : string ) => AxiosHeaders ,
1414 databaseName = OPENOPS_DEFAULT_DATABASE_NAME , // TODO: remove this when all environments are migrated
1515) : Promise < number > {
16- const authenticationHeader = autheticationHeaderCallback ( token ) ;
16+ const authenticationHeader = authenticationHeaderCallback ( token ) ;
1717
1818 const getTablesResult : Application [ ] =
1919 await makeOpenOpsTablesGet < Application > (
Original file line number Diff line number Diff line change @@ -19,10 +19,6 @@ export async function getProjectDatabaseToken(
1919
2020 if ( ! useDatabaseToken ) {
2121 const { token } = await authenticateDefaultUserInOpenOpsTables ( ) ;
22- console . warn (
23- 'Using default authentication for project database token' ,
24- token ,
25- ) ;
2622 return token ;
2723 }
2824
You can’t perform that action at this time.
0 commit comments