fix: match transaction aside layout

This commit is contained in:
Ahmed Bouhuolia
2024-07-01 19:24:09 +02:00
parent c95eec565d
commit 55caf037cd
11 changed files with 58 additions and 17 deletions

View File

@@ -58,9 +58,10 @@ export function MatchingBankTransaction() {
uncategorizedTransactionId={uncategorizedTransactionId}
>
<Formik initialValues={initialValues} onSubmit={handleSubmit}>
<Form>
<>
<MatchingBankTransactionContent />
</Form>
<MatchTransactionFooter />
</>
</Formik>
</MatchingTransactionBoot>
);
@@ -71,7 +72,6 @@ function MatchingBankTransactionContent() {
<Box className={styles.root}>
<PerfectMatchingTransactions />
<GoodMatchingTransactions />
<MatchTransactionFooter />
</Box>
);
}