Skip to content

Commit 44cb67b

Browse files
committed
ui: fix notification display
1 parent 687e461 commit 44cb67b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ui/app/pages/Commands.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ export default function Commands() {
1616
notifications.show({ title: 'Error', message: `${res.error.message}(${res.error.params})`, color: 'red' });
1717
return;
1818
}
19-
notifications.show({ title: 'Success', message: 'Balloon Updated', color: 'green' });
19+
notifications.show({ title: 'Success', message: 'Commands Submitted', color: 'green' });
2020
} catch (e) {
2121
console.error(e);
22-
notifications.show({ title: 'Error', message: 'Failed to update balloon', color: 'red' });
22+
notifications.show({ title: 'Error', message: 'Failed to submit Commands', color: 'red' });
2323
}
2424
};
2525

0 commit comments

Comments
 (0)