Skip to content

Commit 15d6415

Browse files
committed
chore(frontend): remove useless newlines
1 parent b2878de commit 15d6415

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

apps/frontend/app/routes/_dashboard.fitness.$entity.list.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,7 @@ export const loader = async ({ params, request }: LoaderFunctionArgs) => {
111111
const query = parseSearchQuery(request, searchParamsSchema);
112112
const input: UserTemplatesOrWorkoutsListInput = {
113113
sort: { by: query.sortBy, order: query.orderBy },
114-
search: {
115-
query: query.query,
116-
page: query[pageQueryParam],
117-
},
114+
search: { query: query.query, page: query[pageQueryParam] },
118115
};
119116
const displayData = await match(entity)
120117
.with(FitnessEntity.Workouts, async () => {

0 commit comments

Comments
 (0)