Skip to content

Commit

Permalink
Merge pull request #99 from tempfiles-Team/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
ananjaemin committed Nov 20, 2022
2 parents 98a26fa + 35e3ef6 commit 7b54251
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/checkpw/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { bindActionCreators } from 'redux';

import { FileBox, Button, SkeletonUI } from '../../components';
import { actionCreators } from '../../state';
import { getDate } from '../../utils';
import { getDate, getFileSize } from '../../utils';
import * as S from './styled';

export const CheckPasswordPage: React.FC = () => {
Expand Down Expand Up @@ -68,7 +68,7 @@ export const CheckPasswordPage: React.FC = () => {
setLoading(false);
setFileProps({
filename: res.data.filename,
size: res.data.size,
size: getFileSize(res.data.size),
uploadDate: getDate(res.data.uploadDate),
});
})
Expand Down

0 comments on commit 7b54251

Please sign in to comment.