mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 23:16:49 +00:00
fix(nc-gui): error any and remove content from message.error
This commit is contained in:
@@ -102,8 +102,8 @@ async function tryGoogleAuth(api: Api<any>, signIn: Actions['signIn']) {
|
||||
)
|
||||
|
||||
signIn(token)
|
||||
} catch (e) {
|
||||
message.error({ content: await extractSdkResponseErrorMsg(e) })
|
||||
} catch (e: any) {
|
||||
message.error(await extractSdkResponseErrorMsg(e))
|
||||
}
|
||||
|
||||
const newURL = window.location.href.split('?')[0]
|
||||
|
||||
Reference in New Issue
Block a user