Skip to content

Commit

Permalink
naming, imports
Browse files Browse the repository at this point in the history
  • Loading branch information
steezeburger committed Jan 11, 2025
1 parent d9fadb9 commit 7cde609
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import BridgePage from "./bridge/page";

export default function Bridge() {
export default function Home() {
return <BridgePage />;
}
3 changes: 2 additions & 1 deletion apps/web/app/testing/helpers.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { render } from "@testing-library/react";
import { ConfigContextProvider } from "config";
import type React from "react";

import { ConfigContextProvider } from "config";

export const renderWithProviders = (element: React.JSX.Element) => {
render(<ConfigContextProvider>{element}</ConfigContextProvider>);
};

0 comments on commit 7cde609

Please sign in to comment.