Skip to content

Commit c1a1981

Browse files
authored
Merge pull request #1436 from 0xsend/dev
fix: update help.send.app URLs to support.send.app (#1435)
2 parents b7819b3 + e044a60 commit c1a1981

File tree

3 files changed

+68
-4
lines changed

3 files changed

+68
-4
lines changed

CLAUDE.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Claude Code Guidelines
2+
3+
This document contains guidelines and best practices for using Claude Code with this project.
4+
5+
## Git Commit Conventions
6+
7+
This project follows the [Conventional Commits](https://www.conventionalcommits.org/) specification for commit messages. When making commits, please use the following format:
8+
9+
```
10+
<type>[optional scope]: <description>
11+
12+
[optional body]
13+
14+
[optional footer(s)]
15+
```
16+
17+
### Types
18+
19+
Common types include:
20+
21+
- `feat`: A new feature
22+
- `fix`: A bug fix
23+
- `docs`: Documentation only changes
24+
- `style`: Changes that don't affect the meaning of the code (whitespace, formatting, etc.)
25+
- `refactor`: A code change that neither fixes a bug nor adds a feature
26+
- `perf`: A code change that improves performance
27+
- `test`: Adding missing tests or correcting existing tests
28+
- `chore`: Changes to the build process or auxiliary tools and libraries
29+
30+
### Examples
31+
32+
```
33+
fix: update help.send.app URLs to support.send.app
34+
35+
Updated outdated help.send.app URLs to the new support.send.app domain with appropriate articles path.
36+
```
37+
38+
```
39+
feat(auth): add new passkey authentication flow
40+
41+
Added a new authentication flow using passkeys instead of traditional passwords.
42+
```
43+
44+
Always include the Claude signature at the end of your commit messages:
45+
46+
```
47+
🤖 Generated with [Claude Code](https://claude.ai/code)
48+
49+
Co-Authored-By: Claude <[email protected]>
50+
```
51+
52+
## Useful Commands
53+
54+
### Linting and Testing
55+
56+
This project uses Biome for linting and formatting. Run lint checks with:
57+
58+
```bash
59+
npx @biomejs/biome check
60+
```
61+
62+
## Other Guidelines
63+
64+
Add additional guidelines as needed for this project.

packages/app/features/account/backup/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export const BackupScreen = () => {
9595
if you need help.
9696
</Paragraph>
9797
<Link
98-
href="https://help.send.app/what-are-passkeys/"
98+
href="https://support.send.app/en/articles/9789876-what-are-passkeys"
9999
target="_blank"
100100
display="flex"
101101
alignItems="center"
@@ -116,7 +116,7 @@ export const BackupScreen = () => {
116116
You have no Send Account.
117117
</Paragraph>
118118
<Link
119-
href="https://help.send.app/what-are-passkeys/"
119+
href="https://support.send.app/en/articles/9789876-what-are-passkeys"
120120
target="_blank"
121121
display="flex"
122122
alignItems="center"

packages/app/features/auth/onboarding/onboarding-form.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const OnboardingForm = () => {
111111
col: '$background',
112112
}}
113113
$theme-light={{ col: '$black' }}
114-
href="https://help.send.app/what-are-passkeys/"
114+
href="https://support.send.app/en/articles/9789876-what-are-passkeys"
115115
target="_blank"
116116
dsp="none"
117117
$gtMd={{ dsp: 'block' }}
@@ -219,7 +219,7 @@ export const OnboardingForm = () => {
219219
col: '$primary',
220220
}}
221221
$theme-light={{ col: '$black' }}
222-
href="https://help.send.app/what-are-passkeys/"
222+
href="https://support.send.app/en/articles/9789876-what-are-passkeys"
223223
target="_blank"
224224
dsp="flex"
225225
jc="flex-end"

0 commit comments

Comments
 (0)