diff --git a/web/src/pages/accounts/[id]/pre-authorizations.tsx b/web/src/pages/accounts/[id]/pre-authorizations.tsx
index a8070c5..6509cee 100644
--- a/web/src/pages/accounts/[id]/pre-authorizations.tsx
+++ b/web/src/pages/accounts/[id]/pre-authorizations.tsx
@@ -360,7 +360,18 @@ const Pads: NextPage = () => {
>
- ) : null}
+ ) : (
+ <>
+
+ Raw Authorized Amount:
+ {preAuth.account.variant.amountAuthorized.toString()}
+
+
+ Raw Amount Debited:
+ {preAuth.account.variant.amountDebited.toString()}
+
+ >
+ )}
>
) : null}