Skip to content

Commit 5eed32d

Browse files
committed
move info link
1 parent a9953ea commit 5eed32d

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

src/components/SignupForm.tsx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
import { ScreenReaderContent } from "@instructure/ui-a11y-content";
21
import { Flex } from "@instructure/ui-flex";
32
import type { FormMessage } from "@instructure/ui-form-field";
43
import { FormFieldGroup } from "@instructure/ui-form-field";
54
import { Heading } from "@instructure/ui-heading";
6-
import { IconInfoLine } from "@instructure/ui-icons";
7-
import { Link } from "@instructure/ui-link";
8-
import { Text } from "@instructure/ui-text";
95
import type React from "react";
106
import { useCallback, useEffect, useRef, useState } from "react";
117
import { readLocalStorageField } from "../utils/FormData";
@@ -181,18 +177,11 @@ const SignupForm: React.FC<SignupFormProps> = ({
181177
updateProgress();
182178
}, [updateProgress]);
183179

184-
const handleInfoClick = () => setIsTrayOpen?.(true);
185-
186180
const Header = (
187181
<Flex>
188182
<Flex.Item shouldGrow shouldShrink>
189183
<Heading as="h2" level="h3">
190-
Feature Interest{" "}
191-
<Text size="medium" weight="weightRegular">
192-
<Link onClick={handleInfoClick} renderIcon={IconInfoLine}>
193-
<ScreenReaderContent>Form help</ScreenReaderContent>
194-
</Link>
195-
</Text>
184+
Feature Interest
196185
</Heading>
197186
</Flex.Item>
198187
<Flex.Item>

0 commit comments

Comments
 (0)