diff --git a/src/components/Modals/DownloadModal.js b/src/components/Modals/DownloadModal.js
index 884aa5d..0c29208 100644
--- a/src/components/Modals/DownloadModal.js
+++ b/src/components/Modals/DownloadModal.js
@@ -68,7 +68,7 @@ export default function DownloadModal({ color }) {
{err && percentage < 100 && }
{percentage >= 100 && }
- {err ? t({ id: 'download_fail' }) : percentage > 99 ? t({ id: 'download_success' }) : t({ id:'downloading' }) }
+ {err ? t('download_fail') : percentage > 99 ? t('download_success') : t('downloading') }
{name.current}
diff --git a/src/components/Modals/S3DownloadModal.js b/src/components/Modals/S3DownloadModal.js
index 2b72fb9..e85e70d 100644
--- a/src/components/Modals/S3DownloadModal.js
+++ b/src/components/Modals/S3DownloadModal.js
@@ -56,7 +56,7 @@ export default function S3DownloadModal({ color }) {
{err && percentage < 100 && }
{percentage >= 100 && }
- {err ? t({ id: 'download_fail' }) : percentage > 99 ? t({ id: 'download_success' }) : t({ id:'downloading' }) }
+ {err ? t('download_fail') : percentage > 99 ? t('download_success') : t('downloading') }
{name.current}
diff --git a/src/components/Modals/S3UploadModal.js b/src/components/Modals/S3UploadModal.js
index 72fdb25..a80edea 100644
--- a/src/components/Modals/S3UploadModal.js
+++ b/src/components/Modals/S3UploadModal.js
@@ -146,7 +146,7 @@ export default function S3UploadModal({ color }) {
{!err && }
{err && }
- {err ? t({ id: 'upload_fail' }) : percentage > 99 ? t({ id: 'upload_success' }) : t({ id: 'uploading' }) }
+ {err ? t('upload_fail') : percentage > 99 ? t('upload_success') : t('uploading') }
{name.current}
diff --git a/src/components/Modals/UploadModal.js b/src/components/Modals/UploadModal.js
index 3742ace..5a517f7 100644
--- a/src/components/Modals/UploadModal.js
+++ b/src/components/Modals/UploadModal.js
@@ -72,7 +72,7 @@ export default function UploadModal({ color }) {
{!err && }
{err && }
- {err ? t({ id: 'upload_fail' }) : percentage > 99 ? t({ id: 'upload_success' }) : t({ id: 'uploading' }) }
+ {err ? t('upload_fail') : percentage > 99 ? t('upload_success') : t('uploading') }
{name.current}