We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08a6586 commit cf6cb81Copy full SHA for cf6cb81
src/components/ListingCard/index.tsx
@@ -15,11 +15,6 @@ export default function ListingCard({
15
isSelected?: boolean;
16
onClick?: (id: UUID) => void;
17
}) {
18
- // setup
19
- const rolesNeeded = ['Attorney'].concat(
20
- caseData.needs_interpreter ? ['Interpreter'] : [],
21
- );
22
-
23
return (
24
<CardBody
25
$selected={isSelected}
src/utils/helpers.ts
@@ -153,7 +153,7 @@ pSBC.pSBCr = (color: string) => {
153
}
154
return x;
155
};
156
- // helper functions
+// helper functions
157
// helper functions
158
export const parseDate = (d: Date): string =>
159
`${d.getMonth() + 1}/${d.getDate()}/${d.getFullYear()}`;
0 commit comments