Skip to content

Commit

Permalink
Offshore dev (#394)
Browse files Browse the repository at this point in the history
* fix errors and remove env from application

* fix build errors

---------

Co-authored-by: Olasunkanmi Oyinlola <[email protected]>
  • Loading branch information
olasunkanmiraymond and Olasunkanmi Oyinlola authored Oct 24, 2023
1 parent f750244 commit 46133f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/models/order.model.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
interface IOrder {
export interface IOrder {
state: string;
type: string;
merchantId: string;
total: number;
cartItems: IcartItems[];
}

interface IcartItems {
export interface IcartItems {
menuId: string;
total: number;
quantity: number;
selectedItems: IselectedItems[];
}

interface IselectedItems {
export interface IselectedItems {
itemId: string;
menuId: string;
price: number;
Expand Down

0 comments on commit 46133f2

Please sign in to comment.