@@ -7,15 +7,14 @@ import { json, redirect } from '@remix-run/cloudflare';
7
7
import { Outlet , useLoaderData , useLocation } from '@remix-run/react' ;
8
8
import type { getBookResponse , getLoansResponse } from 'client/client' ;
9
9
import { deleteBook , getBook , getLoans } from 'client/client' ;
10
- import { commitSession , getSession } from '~/services/session.server' ;
11
-
12
10
import { Book } from 'client/client.schemas' ;
13
11
import { FaBook } from 'react-icons/fa6' ;
14
- import { GiNotebook } from 'react-icons/gi' ;
15
12
import { LuBookCopy } from 'react-icons/lu' ;
13
+ import { TbBookUpload } from 'react-icons/tb' ;
16
14
import BookDetailActionPanel from '~/components/book-detail/BookDetailActionPanel' ;
17
15
import BreadCrumbsComponent from '~/components/common/breadcrumbs/BreadCrumbsComponent' ;
18
16
import ErrorComponent from '~/components/common/error/ErrorComponent' ;
17
+ import { commitSession , getSession } from '~/services/session.server' ;
19
18
import { ActionResponse } from '~/types/response' ;
20
19
import { makeCookieHeader } from '~/utils/session' ;
21
20
@@ -143,7 +142,7 @@ const BookDetail = () => {
143
142
href : `/home/books/${ bookResponse . data . id } ` ,
144
143
} ,
145
144
{
146
- icon : < GiNotebook /> ,
145
+ icon : < TbBookUpload /> ,
147
146
title : '書籍更新' ,
148
147
href : `/home/books/${ bookResponse . data . id } /edit` ,
149
148
} ,
0 commit comments