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 11404b8 commit e0a5e43Copy full SHA for e0a5e43
source/views/streaming/streams/list.js
@@ -37,7 +37,7 @@ export class StreamListView extends React.PureComponent {
37
}
38
39
state: {
40
- error: ?Error,
+ error: ?string,
41
loading: boolean,
42
refreshing: boolean,
43
streams: Array<{title: string, data: Array<StreamType>}>,
@@ -124,7 +124,7 @@ export class StreamListView extends React.PureComponent {
124
125
126
if (this.state.error) {
127
- return <NoticeView text={'Error: ' + this.state.error.message} />
+ return <NoticeView text={'Error: ' + this.state.error} />
128
129
130
return (
0 commit comments