diff options
| author | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-05-12 09:58:57 +0700 |
|---|---|---|
| committer | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-05-12 09:58:57 +0700 |
| commit | 3cd30c1fea2a2c3982feea3b57e0322040c4a816 (patch) | |
| tree | 80dca8b6753fb8a330b94ddf2e1890f8e8d6a805 /src/lib/transaction/components/Transaction.jsx | |
| parent | b20c603a856d8875e0e2b3a16fd925d997fd16d3 (diff) | |
| parent | c520c39918694e793da661c30975d6c4b60eb63c (diff) | |
Merge branch 'master' into development_tri/implementasi_raja_ongkir
Diffstat (limited to 'src/lib/transaction/components/Transaction.jsx')
| -rw-r--r-- | src/lib/transaction/components/Transaction.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/transaction/components/Transaction.jsx b/src/lib/transaction/components/Transaction.jsx index 30bb454a..7a1e0dd7 100644 --- a/src/lib/transaction/components/Transaction.jsx +++ b/src/lib/transaction/components/Transaction.jsx @@ -34,11 +34,11 @@ const Transaction = ({ id }) => { const file = poFile.current.files[0] const name = poNumber.current.value if (typeof file === 'undefined' || !name) { - toast.error('Nomor dan Dokumen PO harus diisi', { position: 'bottom-center' }) + toast.error('Nomor dan Dokumen PO harus diisi') return } if (file.size > 5000000) { - toast.error('Maksimal ukuran file adalah 5MB', { position: 'bottom-center' }) + toast.error('Maksimal ukuran file adalah 5MB') return } const data = { name, file: await getFileBase64(file) } |
