Skip to content

Commit c8e3a6b

Browse files
committed
format
1 parent b566c16 commit c8e3a6b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

app/routes/search.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export function meta({ data, error }: Route.MetaArgs) {
1818
export async function loader({ request }: Route.LoaderArgs) {
1919
const url = new URL(request.url);
2020
const q = url.searchParams.get("q")?.trim();
21-
2221
if (!q) {
2322
url.searchParams.set("q", "kentcdodds");
2423

app/utils/github.server.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ export async function getUserByLogin(login: string) {
8181
const notFound = error.errors?.find(
8282
(error) => error.type === "NOT_FOUND",
8383
);
84-
8584
if (notFound) {
8685
return null;
8786
}

0 commit comments

Comments
 (0)