File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
stackComponents/ConfigureComponent/CreateComponent
stacks/CreateStack/ListForAll Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 } ) ,
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments