Skip to content

Commit

Permalink
fix: missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianAndersen committed Jan 20, 2025
1 parent 80fda90 commit 0f45fb9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions backend/src/auth/google/google.auth.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { APP_CONFIG } from "@backend/application-config.js";
import { UserProvider } from "@backend/auth/user/user-provider/user-provider.js";
import { createPath } from "@backend/config/api-path.js";
import { createPath, retrieveRefererPath } from "@backend/config/api-path.js";
import { assertEnv, BlEnvironment } from "@backend/config/environment.js";
import { SEResponseHandler } from "@backend/response/se.response.handler.js";
import { BlError } from "@shared/bl-error/bl-error.js";
Expand Down Expand Up @@ -102,9 +102,7 @@ export class GoogleAuth {
res,
tokens.accessToken,
tokens.refreshToken,

// @ts-expect-error fixme: auto ignored
retrieveRefererPath(request.headers),
retrieveRefererPath(request.headers) ?? undefined,
);
}
},
Expand Down

0 comments on commit 0f45fb9

Please sign in to comment.