Skip to content

Commit c91a757

Browse files
committed
unfuck the links
1 parent d4c88e9 commit c91a757

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

gui/src/components/WidgetsComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function UnprioritizedStatuses() {
3535
elems={{
3636
PublicFixLink: (
3737
<A
38-
href=`${DOCS_SITE}/common-issues.html#network-profile-is-currently-set-to-public`
38+
href={`${DOCS_SITE}/common-issues.html#network-profile-is-currently-set-to-public`}
3939
underline
4040
></A>
4141
),

gui/src/components/firmware-tool/AddImusStep.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,17 @@ function IMUCard({
8989
>
9090
<div className="flex cursor-help group">
9191
<A
92-
href=`${DOCS_SITE}/firmware/configuring-project.html#adjust-imu-board-rotation`
92+
href={`${DOCS_SITE}/firmware/configuring-project.html#adjust-imu-board-rotation`}
9393
className="hover:underline"
9494
>
9595
{l10n.getString(
9696
'firmware_tool-add_imus_step-imu_rotation-tooltip-label'
9797
)}
9898
</A>
9999
<div className="group-hover:opacity-100 group-hover:underline opacity-65 ml-1 scale-[0.65] border-2 border-solid text-xs w-5 h-5 flex justify-center items-center rounded-full">
100-
<A href=`${DOCS_SITE}/firmware/configuring-project.html#adjust-imu-board-rotation`>
100+
<A
101+
href={`${DOCS_SITE}/firmware/configuring-project.html#adjust-imu-board-rotation`}
102+
>
101103
i
102104
</A>
103105
</div>

gui/src/components/onboarding/pages/ConnectTracker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ export function ConnectTrackersPage() {
252252
elems={{
253253
PublicFixLink: (
254254
<A
255-
href=`${DOCS_SITE}/common-issues.html#network-profile-is-currently-set-to-public`
255+
href={`${DOCS_SITE}/common-issues.html#network-profile-is-currently-set-to-public`}
256256
underline
257257
></A>
258258
),

gui/src/components/vrc/VRCWarningsPage.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -302,12 +302,7 @@ export function VRCWarningsPage() {
302302
<Localized
303303
id={'vrc_config-page-help-desc'}
304304
elems={{
305-
a: (
306-
<A
307-
href=`${DOCS_SITE}/tools/vrchat-config.html`
308-
underline
309-
></A>
310-
),
305+
a: <A href={`${DOCS_SITE}/tools/vrchat-config.html`} underline></A>,
311306
}}
312307
>
313308
<Typography />

0 commit comments

Comments
 (0)