refactor: simplify notification titles in ThingsView component

This commit is contained in:
Mo Tarbin
2025-06-22 17:24:10 -04:00
parent 18e57e20ed
commit a5722b2445

View File

@@ -201,7 +201,7 @@ const ThingsView = () => {
}
showNotification({
type: 'success',
title: 'Thing Saved',
title: 'Saved',
message: 'Thing saved successfully',
})
})
@@ -291,7 +291,7 @@ const ThingsView = () => {
setThings(currentThings)
showNotification({
type: 'success',
title: 'Thing Updated',
title: 'Updated',
message: 'Thing state updated successfully',
})
})