Skip to content

Commit 4dfd10a

Browse files
authored
fix(profile): incorrect instruction on how to set streak hour offset (@wclxb) (monkeytypegame#6190)
Make streak hover text when no streak offset is applied consistent with the setting location ### Description The hover text label now properly directs a user to the "Account Settings > Account" section instead of "Settings > Danger Settings" when they don't have a streak offset set. ### Checks - [ ] Adding quotes? - [ ] Make sure to include translations for the quotes in the description (or another comment) so we can verify their content. - [ ] Adding a language or a theme? - [ ] If is a language, did you edit `_list.json`, `_groups.json` and add `languages.json`? - [ ] If is a theme, did you add the theme.css? - Also please add a screenshot of the theme, it would be extra awesome if you do so! - [x] Check if any open issues are related to this PR; if so, be sure to tag them below. - [x] Make sure the PR title follows the Conventional Commits standard. (https://www.conventionalcommits.org for more info) - [x] Make sure to include your GitHub username prefixed with @ inside parentheses at the end of the PR title.
1 parent 73be759 commit 4dfd10a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/ts/elements/profile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export async function update(
189189
console.debug(hoverText);
190190

191191
if (streakOffset === undefined) {
192-
hoverText += `\n\nIf the streak reset time doesn't line up with your timezone, you can change it in Settings > Danger zone > Update streak hour offset.`;
192+
hoverText += `\n\nIf the streak reset time doesn't line up with your timezone, you can change it in Account Settings > Account > Set streak hour offset.`;
193193
}
194194
}
195195
}

0 commit comments

Comments
 (0)