Skip to content

Commit ecd09fa

Browse files
Merge pull request #200 from zenml-io/QA-Fixes
Qa fixes
2 parents 1245d2c + 96b58c3 commit ecd09fa

File tree

2 files changed

+3
-3
lines changed
  • src/ui/layouts
    • stackComponents/ConfigureComponent/CreateComponent
    • stacks/CreateStack/ListForAll

2 files changed

+3
-3
lines changed

src/ui/layouts/stackComponents/ConfigureComponent/CreateComponent/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ export const CreateComponent: React.FC<{ flavor: any }> = ({ flavor }) => {
376376
dispatch(
377377
showToasterAction({
378378
description: err?.response?.data?.detail[0].includes('Exists')
379-
? `Component name is already exists.`
379+
? `Component name already exists.`
380380
: err?.response?.data?.detail[0],
381381
type: toasterTypes.failure,
382382
}),

src/ui/layouts/stacks/CreateStack/ListForAll/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export const ListForAll: React.FC<Props> = () => {
160160
dispatch(
161161
showToasterAction({
162162
description: err?.response?.data?.detail[0].includes('Exists')
163-
? `Stack name is already exists.`
163+
? `Stack name already exists.`
164164
: err?.response?.data?.detail[0],
165165
type: toasterTypes.failure,
166166
}),
@@ -200,7 +200,7 @@ export const ListForAll: React.FC<Props> = () => {
200200
value={stackName}
201201
/>
202202
</Box>
203-
<Box marginLeft='xl' style={{ width: '30%' }}>
203+
<Box marginLeft="xl" style={{ width: '30%' }}>
204204
<ToggleField
205205
label={'Share Stack with public'}
206206
value={isShared}

0 commit comments

Comments
 (0)