diff --git a/src/nextapp/pages/manager/gateways/list.tsx b/src/nextapp/pages/manager/gateways/list.tsx
index b0a6246a8..6e9389835 100644
--- a/src/nextapp/pages/manager/gateways/list.tsx
+++ b/src/nextapp/pages/manager/gateways/list.tsx
@@ -106,7 +106,7 @@ const MyGatewaysPage: React.FC = () => {
const handleNamespaceChange = React.useCallback(
(namespace: Namespace) => async () => {
toast({
- title: `Switching to gateway: ${namespace.displayName}`,
+ title: `Switching to Gateway: ${namespace.displayName}`,
status: 'info',
isClosable: true,
});
@@ -116,7 +116,7 @@ const MyGatewaysPage: React.FC = () => {
toast.closeAll();
client.invalidateQueries();
toast({
- title: `Switched to gateway: ${namespace.displayName}`,
+ title: `Switched to Gateway: ${namespace.displayName}`,
status: 'success',
isClosable: true,
});
@@ -124,7 +124,7 @@ const MyGatewaysPage: React.FC = () => {
} catch (err) {
toast.closeAll();
toast({
- title: 'Unable to switch gateways',
+ title: 'Unable to switch Gateways',
status: 'error',
isClosable: true,
});
@@ -264,11 +264,11 @@ const MyGatewaysPage: React.FC = () => {
{isSuccess &&
(namespaceSearchResults.length === 1 ? (
- {namespaceSearchResults.length} gateway
+ {namespaceSearchResults.length} Gateway
) : (
- {namespaceSearchResults.length} gateways
+ {namespaceSearchResults.length} Gateways
))}
- {isLoading && Loading gateways...}
+ {isLoading && Loading Gateways...}
{isError && Gateways failed to load}
{isSuccess && (
<>