Skip to content

Commit

Permalink
fix(sno-upgrade-nextjs): image props
Browse files Browse the repository at this point in the history
image props
  • Loading branch information
snomiao committed Aug 23, 2024
1 parent 2d79466 commit c04ec1f
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import React from 'react'
import { useGetBranch, useGetGitcommit } from '../src/api/generated'
import {
Badge,
Button,
Select,
Table,
Pagination,
Select,
Spinner,
Table,
} from 'flowbite-react'
import Image from 'next/image'
import Link from 'next/link'
import { useRouter } from 'next/router'
import React from 'react'
import { CiFilter } from 'react-icons/ci'
import { ClearableLabel } from '../components/Labels/ClearableLabel'
import { useRouter } from 'next/router'
import { WorkflowStatusButton } from '../components/StatusButton'
import { StatusToColor, StatusToHumanText } from './workflow/[id]'
import analytic from '../global/mixpanel'
import { useGetBranch, useGetGitcommit } from '../src/api/generated'
import { StatusToColor, StatusToHumanText } from './workflow/[id]'

const DEFAULT_REPO = 'comfyanonymous/ComfyUI'

Expand Down Expand Up @@ -283,8 +283,9 @@ function GitCommitsList() {
result.storage_file
?.public_url || ''
}
width="128px"
height="128px"
alt='output file'
width={128}
height={128}
/>
</Table.Cell>
<Table.Cell className=' text-xl '>
Expand Down

0 comments on commit c04ec1f

Please sign in to comment.