Skip to content

Commit

Permalink
Merge pull request #26 from ananjaemin/25-api-변동으로-인한-filelist-페이지-렌더…
Browse files Browse the repository at this point in the history
…링-오류

#25 hotfix
  • Loading branch information
ananjaemin committed Nov 4, 2022
2 parents 3a39292 + af8b9f6 commit 84038ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pages/filelist/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ export const FileListPage: React.FC = () => {
{fileList?.map((item, index) => (
<FileListBox
key={index}
filename={getShortFileName(item.Name)}
size={getFileSize(item.Size)}
LastModified={getDate(item.LastModified)}
filename={getShortFileName(item.filename)}
size={getFileSize(item.size)}
LastModified={getDate(item.lastModified)}
click={() => {
SetDownloadFileProps({
Name: item.Name,
Size: item.Size,
LastModified: item.LastModified,
Name: item.filename,
Size: item.size,
LastModified: item.lastModified,
//passowrd 유무 추가예정
});
navigate('/download');
Expand Down

0 comments on commit 84038ce

Please sign in to comment.