feat: Subscription URL TextField use multiline

*Subscription link that are too long can make reading difficult, so use multiline TextField.
This commit is contained in:
keiko233 2023-09-06 20:32:12 +08:00
parent 1c8fb3392a
commit 18e76db198

View file

@ -188,7 +188,12 @@ export const ProfileViewer = forwardRef<ProfileViewerRef, Props>(
name="url"
control={control}
render={({ field }) => (
<TextField {...text} {...field} label={t("Subscription URL")} />
<TextField
{...text}
{...field}
multiline
label={t("Subscription URL")}
/>
)}
/>