File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -246,7 +246,6 @@ const AddFriendMent = styled.div`
246246
247247const FriendRequest = ( ) => {
248248 const navigate = useNavigate ( ) ;
249- const [ showNotification , setShowNotification ] = useState ( false ) ;
250249 const [ activeTab , setActiveTab ] = useState < 'received' | 'sent' > ( 'received' ) ;
251250 const [ showLimitModal , setShowLimitModal ] = useState ( false ) ;
252251 const [ modalMessage , setModalMessage ] = useState ( '' ) ;
@@ -356,7 +355,13 @@ const FriendRequest = () => {
356355 < AddFriendMent >
357356 현재 요청사항이 없습니다.
358357 </ AddFriendMent >
359- < ArchiveOwl width = { 183 } height = { 169 } />
358+ < ArchiveOwl
359+ css = { css `
360+ width : 183px ;
361+ height : 169px ;
362+ display : block;
363+ ` }
364+ />
360365 </ EmptyContainer >
361366 ) : (
362367 apiReceivedRequests . map ( ( friend ) => (
@@ -406,7 +411,13 @@ const FriendRequest = () => {
406411 < AddFriendMent >
407412 현재 보낸 요청이 없습니다.
408413 </ AddFriendMent >
409- < ArchiveOwl width = { 183 } height = { 169 } />
414+ < ArchiveOwl
415+ css = { css `
416+ width : 183px ;
417+ height : 169px ;
418+ display : block;
419+ ` }
420+ />
410421 </ EmptyContainer >
411422 ) : (
412423 apiSentRequests . map ( ( friend ) => (
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ const Content = styled.div`
4949
5050const FormSection = styled . div `
5151 width : 100% ;
52- max-width : 335px
52+ max-width : 335px ;
5353 display : flex;
5454 flex-direction : column;
5555 gap : 20px ;
You can’t perform that action at this time.
0 commit comments