File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -224,9 +224,9 @@ export const CreateWorkspace: React.FC<Props> = (props) => {
224
224
) }
225
225
/>
226
226
< p className = "text-sm text-onboarding-text-300" > You can only edit the slug of the URL</ p >
227
- { slugError && < span className = "-mt-3 text-sm text-red-500" > Workspace URL is already taken!</ span > }
227
+ { slugError && < p className = "-mt-3 text-sm text-red-500" > Workspace URL is already taken!</ p > }
228
228
{ invalidSlug && (
229
- < span className = "text-sm text-red-500" > { `URL can only contain ( - ), ( _ ) & alphanumeric characters.` } </ span >
229
+ < p className = "text-sm text-red-500" > { `URL can only contain ( - ), ( _ ) & alphanumeric characters.` } </ p >
230
230
) }
231
231
</ div >
232
232
< hr className = "w-full border-onboarding-border-100" />
Original file line number Diff line number Diff line change @@ -188,9 +188,9 @@ export const CreateWorkspaceForm: FC<Props> = observer((props) => {
188
188
) }
189
189
/>
190
190
</ div >
191
- { slugError && < span className = "-mt-3 text-sm text-red-500" > Workspace URL is already taken!</ span > }
191
+ { slugError && < p className = "-mt-3 text-sm text-red-500" > Workspace URL is already taken!</ p > }
192
192
{ invalidSlug && (
193
- < span className = "text-sm text-red-500" > { `URL can only contain ( - ), ( _ ) & alphanumeric characters.` } </ span >
193
+ < p className = "text-sm text-red-500" > { `URL can only contain ( - ), ( _ ) & alphanumeric characters.` } </ p >
194
194
) }
195
195
</ div >
196
196
< div className = "space-y-1 text-sm" >
You can’t perform that action at this time.
0 commit comments