Skip to content

Commit

Permalink
chore(toast): update deployment logs text (#1810)
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiBonnet authored Jan 22, 2025
1 parent 160bf58 commit b17a1af
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function useCancelDeploymentEnvironment({ projectId, logsLink }: { projec
title: 'Your environment deployment is cancelling',
...(logsLink
? {
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback: () => navigate(logsLink),
}
: {}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function useDeleteEnvironment({ projectId, logsLink }: { projectId: strin
title: 'Your environment is being deleted',
...(logsLink
? {
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback: () => navigate(logsLink),
}
: {}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function useDeployAllServices() {
} = variables as Parameters<typeof mutations.deployAllServices>[0]
return {
title: 'Your services are being updated',
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback() {
navigate(ENVIRONMENT_LOGS_URL(organizationId, projectId, environmentId))
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function useDeployEnvironment({ projectId, logsLink }: { projectId: strin
title: 'Your environment is redeploying',
...(logsLink
? {
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback: () => navigate(logsLink),
}
: {}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function useStopEnvironment({ projectId, logsLink }: { projectId: string;
title: 'Your environment is being stopped',
...(logsLink
? {
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback: () => navigate(logsLink),
}
: {}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function useCancelDeploymentService({ projectId, logsLink }: { projectId:
title: 'Your environment deployment is cancelling',
...(logsLink
? {
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback: () => navigate(logsLink),
}
: {}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function useDeleteAllServices() {
} = variables as Parameters<typeof mutations.deleteAllServices>[0]
return {
title: 'Your services are being updated',
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback() {
navigate(ENVIRONMENT_LOGS_URL(organizationId, projectId, environmentId))
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function useDeployService({ environmentId, logsLink }: { environmentId: s
title: 'Your service is deploying',
...(logsLink
? {
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback: () => navigate(logsLink),
}
: {}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function useRestartAllServices() {
} = variables as Parameters<typeof mutations.restartAllServices>[0]
return {
title: 'Your services are being updated',
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback() {
navigate(ENVIRONMENT_LOGS_URL(organizationId, projectId, environmentId))
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function useRestartService({ environmentId, logsLink }: { environmentId:
title: 'Your service is restarting',
...(logsLink
? {
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback: () => navigate(logsLink),
}
: {}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function useStopAllServices() {
} = variables as Parameters<typeof mutations.stopAllServices>[0]
return {
title: 'Your services are being updated',
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback() {
navigate(ENVIRONMENT_LOGS_URL(organizationId, projectId, environmentId))
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function useStopService({ environmentId, logsLink }: { environmentId: str
title: 'Your service is stopping',
...(logsLink
? {
labelAction: 'See Deployment Logs',
labelAction: 'See deployment logs',
callback: () => navigate(logsLink),
}
: {}),
Expand Down

0 comments on commit b17a1af

Please sign in to comment.