Skip to content

Commit

Permalink
Fixed password update link url
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuzznimp committed Oct 22, 2020
1 parent 9351311 commit dbb0af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/display/fewlines/Security/Security.tsx
Expand Up @@ -13,7 +13,7 @@ type SecurityProps = {
export const Security: React.FC<SecurityProps> = ({ isPasswordSet }) => {
return (
<ShadowBox>
<Link href={`/account/security/${isPasswordSet ? "update" : "set"}`}>
<Link href="/account/security/update">
<NeutralLink>
<Flex>
<TextBox>{isPasswordSet ? "Update" : "Set"} your password</TextBox>
Expand Down

0 comments on commit dbb0af5

Please sign in to comment.