We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd1af64 commit 5cac004Copy full SHA for 5cac004
ui/src/pages/Migration/index.tsx
@@ -403,7 +403,7 @@ const Migration = () => {
403
}
404
if (currentIndex !== 3) {
405
Notification({
406
- notificationContent: { text: `Please complete ${result} step` },
+ notificationContent: { text: result === undefined ? `Something went wrong. Please refresh the page.` : `Please complete ${result} step` },
407
type: 'warning'
408
});
409
ui/src/pages/Projects/index.tsx
@@ -170,7 +170,7 @@ const Projects = () => {
170
{loadStatus ? (
171
<div className="flex-wrap">
172
{[...Array(20)].map((e, i) => (
173
- <StackCardSkeleton key={i} />
+ <StackCardSkeleton key={`${i?.toString()}`} />
174
))}
175
</div>
176
) : (
0 commit comments