Skip to content

Commit 0cb24b6

Browse files
committed
Refactor code and enhance maintainability.
1 parent 0fe5f3b commit 0cb24b6

2 files changed

Lines changed: 8 additions & 10 deletions

File tree

infrastructure/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,13 @@ docker compose up --build
9999
```
100100

101101
Services:
102-
| Service | URL |
103-
|----------|------------------------|
104-
| Frontend | http://localhost:80 |
105-
| Backend | http://localhost:3000 |
106-
| MongoDB | localhost:27017 |
107-
| Redis | localhost:6379 |
102+
103+
| Service | URL |
104+
| -------- | --------------------- |
105+
| Frontend | http://localhost:80 |
106+
| Backend | http://localhost:3000 |
107+
| MongoDB | localhost:27017 |
108+
| Redis | localhost:6379 |
108109

109110
### 2 · Terraform (AWS)
110111

mobile-frontend/src/types/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,7 @@ export interface LoanFilters {
9898
export interface Transaction {
9999
id: string;
100100
type:
101-
| "loan_funded"
102-
| "loan_repayment"
103-
| "loan_application"
104-
| "loan_disbursed";
101+
"loan_funded" | "loan_repayment" | "loan_application" | "loan_disbursed";
105102
amount: number;
106103
loanId?: string;
107104
from?: string;

0 commit comments

Comments
 (0)