Skip to content

Commit

Permalink
Change to RR
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiodxa committed Nov 24, 2024
1 parent 12f621b commit 5ba6d11
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { beforeEach, describe, expect, mock, test } from "bun:test";
import { createCookie } from "@remix-run/node";
import { createCookie } from "react-router";
import { Authenticator } from "./index.js";
import { Strategy } from "./strategy.js";

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Cookie } from "@remix-run/server-runtime";
import type { Cookie } from "react-router";
import type { Strategy } from "./strategy.js";

export class Authenticator<User = unknown> {
Expand Down
2 changes: 1 addition & 1 deletion src/strategy.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, expect, test } from "bun:test";
import { createCookie } from "@remix-run/node";
import { createCookie } from "react-router";
import { z } from "zod";
import { Strategy } from "./strategy";

Expand Down
2 changes: 1 addition & 1 deletion src/strategy.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { AppLoadContext, Cookie } from "@remix-run/server-runtime";
import type { AppLoadContext, Cookie } from "react-router";

export namespace Strategy {
/**
Expand Down

0 comments on commit 5ba6d11

Please sign in to comment.