Skip to content

Commit

Permalink
style: format bff-frontend-poc files against biome
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Scully authored and seanes committed Mar 4, 2024
1 parent 08cd7d2 commit f009826
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const PageLayout = () => {
<h1 className={classes.heading}>Dialogporten Frontend</h1>
{/* <h2>Current BFF version: {testData?.bffVersion}</h2> */}
{/* <p>{testData?.message}</p> */}
<Link to={`test`}>Go to React Router Test Page</Link>
<Link to={'test'}>Go to React Router Test Page</Link>
<button
type="button"
onClick={() =>
Expand Down
2 changes: 1 addition & 1 deletion packages/bff-frontend-poc/src/routes/TestPage/TestPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const TestPage = () => {
return (
<div>
<h1>Test page</h1>
<Link to={`/`}>Go to Root</Link>
<Link to={'/'}>Go to Root</Link>
</div>
);
};

0 comments on commit f009826

Please sign in to comment.