Skip to content

Commit a412147

Browse files
committed
Fixed conflict
2 parents fe29d36 + d7dd14e commit a412147

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • app/[locale]/dashboard/[entityType]/[entitySlug]/aimodels/edit/[id]/details

app/[locale]/dashboard/[entityType]/[entitySlug]/aimodels/edit/[id]/details/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export default function AIModelDetailsPage() {
130130
const isValidHttpUrl = (value: string) => {
131131
try {
132132
const parsed = new URL(value);
133-
return parsed.protocol === 'http:' || parsed.protocol === 'https:';
133+
return parsed.protocol === 'https:';
134134
} catch {
135135
return false;
136136
}

0 commit comments

Comments
 (0)