Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
paulclindo committed Nov 27, 2023
1 parent 4b74e10 commit 9e1e213
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
Input,
} from '@shinkai_network/shinkai-ui';
import { BrowserQRCodeReader } from '@zxing/browser';
import { Loader2, PlugZap, QrCode, Trash, Upload } from 'lucide-react';
import { Loader2, QrCode, Trash, Upload } from 'lucide-react';
import { useEffect, useState } from 'react';
import { useForm } from 'react-hook-form';
import { FormattedMessage } from 'react-intl';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
FormMessage,
Input,
} from '@shinkai_network/shinkai-ui';
import { FileKey, PlugZap, Trash, Upload } from 'lucide-react';
import { Trash, Upload } from 'lucide-react';
import { useState } from 'react';
import { useForm } from 'react-hook-form';
import { FormattedMessage } from 'react-intl';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const EditInboxNameDialog = ({
type="button"
variant="ghost"
>
<FormattedMessage id="cancel"></FormattedMessage>
<FormattedMessage id="cancel" />
</Button>
<Button className="flex-1" disabled={isPending} type="submit">
{isPending ? (
Expand Down
2 changes: 1 addition & 1 deletion apps/shinkai-visor/src/components/inboxes/inboxes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
ChatBubbleIcon,
JobBubbleIcon,
} from '@shinkai_network/shinkai-ui';
import { Edit, MessageCircle, Plus, Workflow } from 'lucide-react';
import { Edit, Plus } from 'lucide-react';
import { Fragment, useRef, useState } from 'react';
import { FormattedMessage } from 'react-intl';
import { useHistory } from 'react-router-dom';
Expand Down
13 changes: 1 addition & 12 deletions apps/shinkai-visor/src/components/nav/nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,7 @@ import {
InboxIcon,
JobBubbleIcon,
} from '@shinkai_network/shinkai-ui';
import {
ArrowLeft,
Bot,
Edit3,
Inbox,
Menu,
MessageCircle,
Settings,
Unplug,
Workflow,
X,
} from 'lucide-react';
import { ArrowLeft, Menu, Settings, X } from 'lucide-react';
import { useMemo, useState } from 'react';
import { FormattedMessage } from 'react-intl';
import { Link, useHistory, useLocation } from 'react-router-dom';
Expand Down

0 comments on commit 9e1e213

Please sign in to comment.