mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 10:47:30 +00:00
Fix(Sentry TypeError): Cannot read properties of undefined (reading 'map')
This commit is contained in:
@@ -334,8 +334,8 @@ const testConnectionError = ref()
|
||||
const testConnection = async (retry = 0, initialConfig = null, initialError = null) => {
|
||||
try {
|
||||
await validate()
|
||||
} catch (e) {
|
||||
if (e.errorFields?.length) {
|
||||
} catch (e: any) {
|
||||
if (e?.errorFields?.length) {
|
||||
focusInvalidInput()
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user