feat: run re-recognizing bank transactions on edit bank rule

This commit is contained in:
Ahmed Bouhuolia
2024-08-12 20:07:01 +02:00
parent 193a86cf30
commit cf4bb3007e
6 changed files with 24 additions and 8 deletions

View File

@@ -116,6 +116,6 @@ const determineFieldType = (field: string): string => {
case 'description':
case 'payee':
default:
return 'unknown';
return 'text';
}
};