Skip to content

Commit ebe7e5c

Browse files
committed
fix(enterprise): remove webp from logo accept attribute to match upload hook validation
1 parent 96b7a2d commit ebe7e5c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sim/ee/whitelabeling/components/whitelabeling-settings.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ export function WhitelabelingSettings() {
251251
<div className='flex flex-col gap-5'>
252252
<SettingRow
253253
label='Logo'
254-
description='Displayed in the sidebar. Use a square or wide image (PNG, JPG, or WebP, max 5MB).'
254+
description='Displayed in the sidebar. Use a square or wide image (PNG or JPG, max 5MB).'
255255
>
256256
<div className='flex items-center gap-4'>
257257
<button
@@ -299,7 +299,7 @@ export function WhitelabelingSettings() {
299299
<input
300300
ref={fileInputRef}
301301
type='file'
302-
accept='image/png,image/jpeg,image/jpg,image/webp'
302+
accept='image/png,image/jpeg,image/jpg'
303303
onChange={handleFileChange}
304304
className='hidden'
305305
/>

0 commit comments

Comments
 (0)