Skip to content

Commit

Permalink
Prettified code
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette authored and actions-user committed Mar 20, 2021
1 parent de6ce70 commit c8865df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/src/trading/logic/calculatePrices.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NextFunction } from '../../util/middleware';
import { getAllItemsPrice } from '../../steam/market';
import { AccountOptions } from '../../account/account';
import { ItemPrice,OfferContext } from '../types';
import { ItemPrice, OfferContext } from '../types';

export default async function middleware(context: OfferContext, next: NextFunction) {
const { processor, offer } = context;
Expand Down
5 changes: 2 additions & 3 deletions app/src/trading/logic/glitched.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { NextFunction } from "../../util/middleware";
import { OfferContext } from "../types";

import { NextFunction } from '../../util/middleware';
import { OfferContext } from '../types';

export default function middleware(context: OfferContext, next: NextFunction) {
const { processor, offer } = context;
Expand Down
5 changes: 2 additions & 3 deletions app/src/trading/logic/isOwner.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { NextFunction } from "../../util/middleware";
import { OfferContext } from "../types";

import { NextFunction } from '../../util/middleware';
import { OfferContext } from '../types';

export default function middleware(context: OfferContext, next: NextFunction) {
const { processor, offer } = context;
Expand Down

0 comments on commit c8865df

Please sign in to comment.