@@ -30,7 +30,7 @@ const Messages = () => {
useEffect(() => {
getMessages()
}, [page])
-
+
const getMessages = async () => {
setLoading(true)
const response = await request.post<{ objs: Message[], totalSize : number }>(getNoticeList,{
@@ -89,7 +89,7 @@ const Messages = () => {
}
</div>
<Pagination
- className='w-full justify-end fixed bottom-5 right-20'
+ className='w-full justify-end fixed bottom-5 right-15'
total={total}
pageSize={PAGE_SIZE}
current={page}