Update create flow pages
This commit is contained in:
@@ -49,10 +49,10 @@ export interface TextAreaProps extends Omit<
|
||||
className?: string;
|
||||
rows?: number;
|
||||
/**
|
||||
* Whether to show hint text below textarea (Figma prop).
|
||||
* Hint below the textarea: `true` shows placeholder copy, or pass a string (e.g. character count).
|
||||
* @default false
|
||||
*/
|
||||
textHint?: boolean;
|
||||
textHint?: boolean | string;
|
||||
/**
|
||||
* Whether to show form header (label and help icon) above textarea (Figma prop).
|
||||
* @default true
|
||||
|
||||
@@ -9,7 +9,7 @@ import TextInput from "../../controls/TextInput";
|
||||
import ContentLockup from "../../type/ContentLockup";
|
||||
import { requestMagicLink } from "../../../../lib/create/api";
|
||||
import { safeInternalPath } from "../../../../lib/safeInternalPath";
|
||||
import { setTransferPendingFlag } from "../../../create/anonymousDraftStorage";
|
||||
import { setTransferPendingFlag } from "../../../create/utils/anonymousDraftStorage";
|
||||
|
||||
/** Mail icon for login modal (inline SVG; same pattern as InfoMessageBox ExclamationIconInline). */
|
||||
function MailIconInline() {
|
||||
|
||||
@@ -197,7 +197,7 @@ const TopNavContainer = memo<TopNavProps>(
|
||||
size={buttonSize}
|
||||
buttonType={buttonType}
|
||||
palette={palette}
|
||||
onClick={() => router.push("/create/informational")}
|
||||
onClick={() => router.push("/create")}
|
||||
ariaLabel={t("ariaLabels.createNewRule")}
|
||||
>
|
||||
{renderAvatarGroup(containerSize, avatarSize)}
|
||||
|
||||
Reference in New Issue
Block a user