Skip to content

Commit

Permalink
fix lint errs
Browse files Browse the repository at this point in the history
  • Loading branch information
salieflewis committed Feb 18, 2024
1 parent 8926cbc commit 7f46be7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/site/components/client/ItemDropzone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ export function ItemDropzone({ channel }: { channel: Channel }) {
isVideo({ mimeType: contentType }) || isAudio({ mimeType: contentType })
? 2
: isPdf({ mimeType: contentType }) || isGLB(file) || isText(file)
? 1
: 0
? 1
: 0

const animationUri =
contentTypeKey === 2 || contentTypeKey === 1 ? cid : ''
Expand Down
1 change: 0 additions & 1 deletion apps/site/design-system/components/Textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import * as React from 'react'

import { cn } from '../utils'

// biome-ignore lint:
export interface TextareaProps
extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {}

Expand Down

0 comments on commit 7f46be7

Please sign in to comment.