You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/routes/(console)/project-[region]-[project]/functions/function-[function]/domains/add-domain/+page.svelte
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,9 @@
56
56
teamId: $project.teamId,
57
57
domain: apexDomain
58
58
});
59
-
} catch (error) {}
59
+
} catch (error) {
60
+
// Empty as domain creation error needs to be silent
Copy file name to clipboardExpand all lines: src/routes/(console)/project-[region]-[project]/functions/function-[function]/domains/add-domain/verify-[domain]/+page.svelte
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,9 @@
63
63
'Domain verification failed. Please check your domain settings or try again later'
64
64
);
65
65
}
66
-
} catch (error) {}
66
+
} catch (error) {
67
+
// Empty as domain creation error needs to be silent
68
+
}
67
69
68
70
try {
69
71
const domain =data.domainsList.domains.find(
@@ -80,7 +82,9 @@
80
82
);
81
83
}
82
84
}
83
-
} catch (error) {}
85
+
} catch (error) {
86
+
// Empty as domain update error needs to be silent
Copy file name to clipboardExpand all lines: src/routes/(console)/project-[region]-[project]/sites/site-[site]/domains/add-domain/verify-[domain]/+page.svelte
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,9 @@
65
65
'Domain verification failed. Please check your domain settings or try again later'
66
66
);
67
67
}
68
-
} catch (error) {}
68
+
} catch (error) {
69
+
// Empty as domain creation error needs to be silent
70
+
}
69
71
70
72
try {
71
73
const domain =data.domainsList.domains.find(
@@ -82,7 +84,9 @@
82
84
);
83
85
}
84
86
}
85
-
} catch (error) {}
87
+
} catch (error) {
88
+
// Empty as domain update error needs to be silent
0 commit comments