From 109a477f9e31f469c4d2bda63ef1879a0d00cd04 Mon Sep 17 00:00:00 2001 From: Pablo Lara Date: Mon, 19 Aug 2024 16:42:44 +0200 Subject: [PATCH] chore: fix English typo error --- components/providers/AddProvider.tsx | 2 +- components/providers/AddProviderModal.tsx | 2 +- components/providers/CheckConnectionProvider.tsx | 2 +- components/providers/DeleteProvider.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/providers/AddProvider.tsx b/components/providers/AddProvider.tsx index b8880da1e9..22cbfb2943 100644 --- a/components/providers/AddProvider.tsx +++ b/components/providers/AddProvider.tsx @@ -22,7 +22,7 @@ export const AddProvider = () => { // show error toast({ variant: "destructive", - title: "Ups! Something went wrong", + title: "Oops! Something went wrong", description: errorMessage, }); }); diff --git a/components/providers/AddProviderModal.tsx b/components/providers/AddProviderModal.tsx index b9facbe627..c81602198b 100644 --- a/components/providers/AddProviderModal.tsx +++ b/components/providers/AddProviderModal.tsx @@ -34,7 +34,7 @@ export const AddProviderModal = () => { // show error toast({ variant: "destructive", - title: "Ups! Something went wrong", + title: "Oops! Something went wrong", description: errorMessage, }); }); diff --git a/components/providers/CheckConnectionProvider.tsx b/components/providers/CheckConnectionProvider.tsx index 598b93df66..ed3f5db69a 100644 --- a/components/providers/CheckConnectionProvider.tsx +++ b/components/providers/CheckConnectionProvider.tsx @@ -22,7 +22,7 @@ export const CheckConnectionProvider = ({ id }: { id: string }) => { // show error toast({ variant: "destructive", - title: "Ups! Something went wrong", + title: "Oops! Something went wrong", description: errorMessage, }); } else { diff --git a/components/providers/DeleteProvider.tsx b/components/providers/DeleteProvider.tsx index 6d5b476253..dba2cf22e8 100644 --- a/components/providers/DeleteProvider.tsx +++ b/components/providers/DeleteProvider.tsx @@ -22,7 +22,7 @@ export const DeleteProvider = ({ id }: { id: string }) => { // show error toast({ variant: "destructive", - title: "Ups! Something went wrong", + title: "Oops! Something went wrong", description: errorMessage, }); } else {