Skip to content

Commit eb4069d

Browse files
committed
Use @ imports
1 parent 53746bc commit eb4069d

File tree

1 file changed

+3
-3
lines changed
  • packages/cpt-ui/app/selectyourrole

1 file changed

+3
-3
lines changed

packages/cpt-ui/app/selectyourrole/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
import React, {useState, useEffect, useContext, useCallback } from "react"
33
import { Container, Col, Row, Details, Table, ErrorSummary, Button, InsetText } from "nhsuk-react-components"
44
import { AuthContext } from "@/context/AuthContext";
5-
import EpsCard from "../../components/EpsCard";
5+
import EpsCard from "@/components/EpsCard";
66
import {
77
ROLE_CARDS,
88
SELECT_ROLE_PAGE_TEXT,
9-
} from "../../constants/ui-strings/CardStrings";
9+
} from "@/constants/ui-strings/CardStrings";
1010

1111
export type RoleDetails = {
1212
role_name?: string;
@@ -157,7 +157,7 @@ export default function SelectYourRolePage() {
157157
</Col>
158158
))}
159159
</Row>
160-
160+
161161
{/* Roles without access Section */}
162162
<Row>
163163
<Details expander>

0 commit comments

Comments
 (0)