Skip to content

Commit

Permalink
馃悰 fix: fix deploy error. Changed SquareAsterisk to AsteriskSquare (#952)
Browse files Browse the repository at this point in the history
  • Loading branch information
phuang07 committed Jan 6, 2024
1 parent 9abb75e commit 61cbcf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/Conversation/Error/InvalidAccess.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Icon } from '@lobehub/ui';
import { Button, Input, Segmented } from 'antd';
import { KeySquare, SquareAsterisk } from 'lucide-react';
import { AsteriskSquare, KeySquare } from 'lucide-react';
import { memo, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { Flexbox } from 'react-layout-kit';
Expand Down Expand Up @@ -30,7 +30,7 @@ const InvalidAccess: RenderErrorMessage['Render'] = memo(({ id }) => {
onChange={(value) => setMode(value as Tab)}
options={[
{
icon: <Icon icon={SquareAsterisk} />,
icon: <Icon icon={AsteriskSquare} />,
label: t('password', { ns: 'common' }),
value: Tab.Password,
},
Expand Down

0 comments on commit 61cbcf1

Please sign in to comment.