Remove unnecessary "??" operator usage in EmptyView prop

This commit is contained in:
schroda
2024-04-27 20:42:06 +02:00
parent 626c4ba6e6
commit a447719309
4 changed files with 4 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ export const TrackingSettings = () => {
const trackers = data?.trackers.nodes ?? [];
if (error) {
return <EmptyView message={error.message ?? error} />;
return <EmptyView message={error.message} />;
}
if (loading) {