Skip to content

Commit

Permalink
Fix formatting in licenseUsage.ts file.
Browse files Browse the repository at this point in the history
  • Loading branch information
flemzord committed May 6, 2024
1 parent 8ba2140 commit 603abc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/server/trpc/routers/licenseUsage.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { schema } from '@getlicensed/db';
import {and, desc, eq, sql} from 'drizzle-orm';
import { and, desc, eq, sql } from 'drizzle-orm';
import { z } from 'zod';
import { protectedProcedure, t } from '~/server/trpc/trpc';
import { generateLicenseKey } from '~/server/utils/license';
Expand All @@ -14,6 +14,6 @@ export const licenseUsageRouter = t.router({
FROM "License_usage"
WHERE license_id = ${input.id} AND type = 'LICENSE_VALIDATE'
GROUP BY time,action
ORDER BY time DESC LIMIT 10;`)
ORDER BY time DESC LIMIT 10;`);
}),
});
});

0 comments on commit 603abc7

Please sign in to comment.