Merge branch 'develop' of https://github.com/misyaguziya/VRCT into develop

This commit is contained in:
misyaguziya
2026-01-10 02:19:26 +09:00
8 changed files with 42 additions and 1 deletions

View File

@@ -53,6 +53,9 @@ export const Others = () => {
<ConvertMessageToRomajiContainer />
<ConvertMessageToHiraganaContainer />
</div>
<div>
<TelemetryContainer />
</div>
</div>
);
};
@@ -245,4 +248,18 @@ const ConvertMessageToHiraganaContainer = () => {
toggleFunction={toggleConvertMessageToHiragana}
/>
);
};
const TelemetryContainer = () => {
const { t } = useI18n();
const { currentTelemetry, toggleTelemetry } = useOthers();
return (
<CheckboxContainer
label={t("config_page.others.telemetry.label")}
desc={t("config_page.others.telemetry.desc")}
variable={currentTelemetry}
toggleFunction={toggleTelemetry}
/>
);
};