diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-17 21:17:06 -0400 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-17 21:17:06 -0400 | 
| commit | 674b158932394d3cad8bce8dedca49b1efdfd453 (patch) | |
| tree | 8a4ad738fee49ebb9835e9e0822c36f1ebfaa2ac /ufund-ui/src/app/models | |
| parent | 8951d00eddb147e5301454f250e503ad19aa47d3 (diff) | |
| download | JellySolutions-674b158932394d3cad8bce8dedca49b1efdfd453.tar.gz JellySolutions-674b158932394d3cad8bce8dedca49b1efdfd453.tar.bz2 JellySolutions-674b158932394d3cad8bce8dedca49b1efdfd453.zip  | |
Attempt at fixing connection to front end
Diffstat (limited to 'ufund-ui/src/app/models')
| -rw-r--r-- | ufund-ui/src/app/models/User.ts | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/ufund-ui/src/app/models/User.ts b/ufund-ui/src/app/models/User.ts index 5ed3a3f..b640e04 100644 --- a/ufund-ui/src/app/models/User.ts +++ b/ufund-ui/src/app/models/User.ts @@ -6,7 +6,7 @@ export enum userType {  }  export interface User { -  username: string; -  basket: Need[]; -  type: userType +    username: string; +    basket: Need[]; +    type: userType  }  | 
