File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -81,9 +81,11 @@ function App() {
81
81
if ( loading ) {
82
82
return (
83
83
< Box display = "flex" height = "100%" width = "100%" justifyContent = "center" alignItems = "center" >
84
- < Box display = "flex" gap = { 1 } alignItems = "center" >
84
+ < Box display = "flex" gap = { 2 } alignItems = "center" >
85
85
< CircularProgress />
86
- < Typography variant = "h4" > Connecting...</ Typography >
86
+ < Typography variant = "h4" >
87
+ < strong > Connecting...</ strong >
88
+ </ Typography >
87
89
</ Box >
88
90
</ Box >
89
91
)
Original file line number Diff line number Diff line change @@ -75,7 +75,10 @@ const Console = ({
75
75
. map ( ( submission ) => submission . titleSlug )
76
76
77
77
const newSubmissions = submissions . filter (
78
- ( submission : any ) => ! previousSubmissionKeys . includes ( getSubmissionKey ( submission ) )
78
+ ( submission : any ) =>
79
+ ! previousSubmissionKeys . includes ( getSubmissionKey ( submission ) ) &&
80
+ // if a submission is pending, for some reason it displays as "Internal Error"
81
+ submission . statusDisplay !== 'Internal Error'
79
82
)
80
83
81
84
// we have new submissions - process them
You can’t perform that action at this time.
0 commit comments