Skip to content

Commit f0cabe5

Browse files
fredli74Copilot
andauthored
logic.ts trailing whitespace
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent f4aff26 commit f0cabe5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

server/logic.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,6 @@ export class Logic {
930930
const priceToScorePerMs = (price: number, maxPrice?: number): number => {
931931
return (maxPrice !== undefined && price > maxPrice) ? price * OVERPRICE_PENALTY_FACTOR : price;
932932
};
933-
934933
const price_data: { ts: Date; price: number }[] = ( location_uuid && (await this.db.pg.manyOrNone(
935934
`SELECT ts, price FROM price_data p JOIN location l ON (l.price_list_uuid = p.price_list_uuid) WHERE location_uuid = $1 AND ts >= NOW() ORDER BY ts`,
936935
[location_uuid]

0 commit comments

Comments
 (0)