@djangocfg/layouts 2.1.227 → 2.1.228
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -17
- package/package.json +18 -18
- package/src/components/errors/ErrorLayout.tsx +2 -2
- package/src/components/errors/ErrorsTracker/index.ts +1 -0
- package/src/components/errors/ErrorsTracker/utils/formatters.ts +23 -1
- package/src/hooks/useLogout.ts +9 -12
- package/src/layouts/AppLayout/AppLayout.tsx +20 -8
- package/src/layouts/AppLayout/BaseApp.tsx +5 -28
- package/src/layouts/AuthLayout/AuthLayout.tsx +51 -22
- package/src/layouts/AuthLayout/README.md +78 -0
- package/src/layouts/AuthLayout/components/shared/AuthDivider.tsx +2 -2
- package/src/layouts/AuthLayout/components/shared/AuthError.tsx +10 -2
- package/src/layouts/AuthLayout/components/shared/AuthFooter.tsx +2 -2
- package/src/layouts/AuthLayout/components/shared/AuthHeader.tsx +3 -2
- package/src/layouts/AuthLayout/components/shared/AuthOTPInput.tsx +4 -1
- package/src/layouts/AuthLayout/components/shared/TermsCheckbox.tsx +2 -2
- package/src/layouts/AuthLayout/components/shared/index.ts +0 -2
- package/src/layouts/AuthLayout/components/steps/IdentifierStep.tsx +25 -80
- package/src/layouts/AuthLayout/components/steps/OTPStep.tsx +8 -13
- package/src/layouts/AuthLayout/components/steps/SetupStep/SetupComplete.tsx +2 -2
- package/src/layouts/AuthLayout/components/steps/SetupStep/SetupLoading.tsx +2 -2
- package/src/layouts/AuthLayout/components/steps/SetupStep/SetupQRCode.tsx +2 -2
- package/src/layouts/AuthLayout/components/steps/TwoFactorStep.tsx +61 -42
- package/src/layouts/AuthLayout/context.tsx +0 -2
- package/src/layouts/AuthLayout/index.ts +9 -6
- package/src/layouts/AuthLayout/styles/auth.css +265 -120
- package/src/layouts/AuthLayout/types.ts +60 -7
- package/src/layouts/ProfileLayout/.claude/.sidecar/activity.jsonl +2 -0
- package/src/layouts/ProfileLayout/.claude/.sidecar/history/2026-03-15.md +35 -0
- package/src/layouts/ProfileLayout/.claude/.sidecar/review.md +35 -0
- package/src/layouts/ProfileLayout/.claude/.sidecar/scan.log +3 -0
- package/src/layouts/ProfileLayout/.claude/.sidecar/tasks/T-001.md +18 -0
- package/src/layouts/ProfileLayout/.claude/.sidecar/tasks/T-002.md +19 -0
- package/src/layouts/ProfileLayout/.claude/.sidecar/tasks/T-003.md +18 -0
- package/src/layouts/ProfileLayout/.claude/.sidecar/tasks/T-004.md +18 -0
- package/src/layouts/ProfileLayout/.claude/.sidecar/tasks/T-005.md +18 -0
- package/src/layouts/ProfileLayout/.claude/.sidecar/usage.json +5 -0
- package/src/layouts/ProfileLayout/ProfileLayout.tsx +52 -403
- package/src/layouts/ProfileLayout/components/ActionButton.tsx +38 -0
- package/src/layouts/ProfileLayout/components/DeleteAccountSection.tsx +109 -148
- package/src/layouts/ProfileLayout/components/EditableField.tsx +119 -0
- package/src/layouts/ProfileLayout/components/Section.tsx +22 -0
- package/src/layouts/ProfileLayout/components/index.ts +4 -1
- package/src/layouts/ProfileLayout/context.tsx +31 -0
- package/src/layouts/PublicLayout/components/PublicMobileDrawer.tsx +2 -2
- package/src/layouts/PublicLayout/components/PublicNavigation.tsx +2 -2
- package/src/layouts/_components/UserMenu.tsx +2 -2
- package/src/layouts/types/README.md +0 -20
- package/src/layouts/types/index.ts +2 -2
- package/src/layouts/types/layout.types.ts +2 -5
- package/src/layouts/types/providers.types.ts +0 -27
- package/src/snippets/AuthDialog/AuthDialog.tsx +2 -2
- package/src/snippets/Breadcrumbs.tsx +2 -2
- package/src/snippets/index.ts +0 -67
- package/src/layouts/AuthLayout/components/shared/ChannelToggle.tsx +0 -56
- package/src/snippets/McpChat/README.md +0 -441
- package/src/snippets/McpChat/components/AIChatWidget.tsx +0 -361
- package/src/snippets/McpChat/components/AskAIButton.tsx +0 -92
- package/src/snippets/McpChat/components/ChatMessages.tsx +0 -138
- package/src/snippets/McpChat/components/ChatPanel.tsx +0 -131
- package/src/snippets/McpChat/components/ChatSidebar.tsx +0 -156
- package/src/snippets/McpChat/components/ChatWidget.tsx +0 -115
- package/src/snippets/McpChat/components/MessageBubble.tsx +0 -142
- package/src/snippets/McpChat/components/MessageInput.tsx +0 -140
- package/src/snippets/McpChat/components/index.ts +0 -24
- package/src/snippets/McpChat/config.ts +0 -94
- package/src/snippets/McpChat/context/AIChatContext.tsx +0 -327
- package/src/snippets/McpChat/context/ChatContext.tsx +0 -361
- package/src/snippets/McpChat/context/index.ts +0 -7
- package/src/snippets/McpChat/hooks/index.ts +0 -6
- package/src/snippets/McpChat/hooks/useAIChat.ts +0 -503
- package/src/snippets/McpChat/hooks/useChatLayout.ts +0 -442
- package/src/snippets/McpChat/hooks/useMcpChat.ts +0 -90
- package/src/snippets/McpChat/index.ts +0 -79
- package/src/snippets/McpChat/types.ts +0 -189
- package/src/snippets/PWAInstall/@docs/README.md +0 -92
- package/src/snippets/PWAInstall/@docs/research/ios-android-install-flows.md +0 -576
- package/src/snippets/PWAInstall/README.md +0 -235
- package/src/snippets/PWAInstall/components/A2HSHint.tsx +0 -236
- package/src/snippets/PWAInstall/components/DesktopGuide.tsx +0 -234
- package/src/snippets/PWAInstall/components/IOSGuide.tsx +0 -29
- package/src/snippets/PWAInstall/components/IOSGuideDrawer.tsx +0 -103
- package/src/snippets/PWAInstall/components/IOSGuideModal.tsx +0 -103
- package/src/snippets/PWAInstall/components/PWAPageResumeManager.tsx +0 -33
- package/src/snippets/PWAInstall/context/InstallContext.tsx +0 -102
- package/src/snippets/PWAInstall/hooks/useInstallPrompt.ts +0 -168
- package/src/snippets/PWAInstall/hooks/useIsPWA.ts +0 -116
- package/src/snippets/PWAInstall/hooks/usePWAPageResume.ts +0 -163
- package/src/snippets/PWAInstall/index.ts +0 -80
- package/src/snippets/PWAInstall/types/components.ts +0 -95
- package/src/snippets/PWAInstall/types/config.ts +0 -29
- package/src/snippets/PWAInstall/types/index.ts +0 -26
- package/src/snippets/PWAInstall/types/install.ts +0 -38
- package/src/snippets/PWAInstall/types/platform.ts +0 -29
- package/src/snippets/PWAInstall/utils/localStorage.ts +0 -181
- package/src/snippets/PWAInstall/utils/logger.ts +0 -149
- package/src/snippets/PWAInstall/utils/platform.ts +0 -151
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Auth Layout Types
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
4
|
+
* - Pure auth logic types re-exported from @djangocfg/api/auth
|
|
5
|
+
* - UI/layout types defined here — api package has no business knowing about them
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
+
import type React from 'react';
|
|
9
|
+
|
|
8
10
|
export type {
|
|
9
|
-
AuthChannel,
|
|
10
11
|
AuthStep,
|
|
11
12
|
AuthFormState,
|
|
12
13
|
AuthFormStateHandlers,
|
|
@@ -15,8 +16,60 @@ export type {
|
|
|
15
16
|
AuthFormAutoSubmit,
|
|
16
17
|
AuthFormReturn,
|
|
17
18
|
UseAuthFormOptions,
|
|
18
|
-
AuthLayoutConfig,
|
|
19
|
-
AuthFormContextType,
|
|
20
|
-
AuthLayoutProps,
|
|
21
|
-
AuthHelpProps,
|
|
22
19
|
} from '@djangocfg/api/auth';
|
|
20
|
+
|
|
21
|
+
import type { AuthFormReturn } from '@djangocfg/api/auth';
|
|
22
|
+
|
|
23
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
24
|
+
// Layout Config — UI-specific configuration for AuthLayout
|
|
25
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
26
|
+
|
|
27
|
+
export interface AuthLayoutConfig {
|
|
28
|
+
/** Support page URL */
|
|
29
|
+
supportUrl?: string;
|
|
30
|
+
/** Terms of service URL */
|
|
31
|
+
termsUrl?: string;
|
|
32
|
+
/** Privacy policy URL */
|
|
33
|
+
privacyUrl?: string;
|
|
34
|
+
/** Source URL for tracking */
|
|
35
|
+
sourceUrl: string;
|
|
36
|
+
/** Enable GitHub OAuth button */
|
|
37
|
+
enableGithubAuth?: boolean;
|
|
38
|
+
/** Logo URL for success screen (SVG recommended) */
|
|
39
|
+
logoUrl?: string;
|
|
40
|
+
/** URL to redirect after successful auth (default: /dashboard) */
|
|
41
|
+
redirectUrl?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Enable 2FA setup prompt after successful authentication.
|
|
44
|
+
* @default true
|
|
45
|
+
*/
|
|
46
|
+
enable2FASetup?: boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
50
|
+
// Context — form state + layout config merged for step components
|
|
51
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
52
|
+
|
|
53
|
+
export interface AuthFormContextType extends AuthFormReturn, AuthLayoutConfig {}
|
|
54
|
+
|
|
55
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
56
|
+
// Component Props
|
|
57
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
58
|
+
|
|
59
|
+
export interface AuthLayoutProps extends AuthLayoutConfig {
|
|
60
|
+
children?: React.ReactNode;
|
|
61
|
+
className?: string;
|
|
62
|
+
/** Callback when identifier step succeeds */
|
|
63
|
+
onIdentifierSuccess?: (identifier: string) => void;
|
|
64
|
+
/** Callback when OTP verification succeeds */
|
|
65
|
+
onOTPSuccess?: () => void;
|
|
66
|
+
/** Callback when OAuth succeeds */
|
|
67
|
+
onOAuthSuccess?: (user: any, isNewUser: boolean, provider: string) => void;
|
|
68
|
+
/** Callback on any error */
|
|
69
|
+
onError?: (message: string) => void;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface AuthHelpProps {
|
|
73
|
+
className?: string;
|
|
74
|
+
variant?: 'default' | 'compact';
|
|
75
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Sidecar Review -- 2026-03-15T05:28:21.052657+00:00
|
|
2
|
+
|
|
3
|
+
## Staleness
|
|
4
|
+
|
|
5
|
+
- [?] Cannot assess staleness because documentation contents are unavailable. However, given the high commit activity (20 commits in 2 days), any documentation older than 30 days is almost certainly stale and contradictory to the current codebase state (e.g., new 'debuger', 'monitor', and OTP features).
|
|
6
|
+
Files: Documentation referenced in file list
|
|
7
|
+
Action: Provide documentation content to check modification dates against commit history. Update all documentation to reflect recent changes like the debug panel, monitoring integration, and OTP brute-force protection.
|
|
8
|
+
(id: 46040dd3aace)
|
|
9
|
+
|
|
10
|
+
## Contradictions
|
|
11
|
+
|
|
12
|
+
- [~] The commit 'updaded rq' (2026-03-14) has a typo and inconsistent formatting compared to other commits (e.g., 'chore(deps): bump django-rq version to 4.0.0'). This suggests poor documentation practices in commit messages, which can lead to confusion about project changes.
|
|
13
|
+
Files: Commit history analysis
|
|
14
|
+
Action: Enforce a commit message convention (e.g., Conventional Commits) and consider amending the 'updaded rq' commit for clarity. Ensure future commits are consistently formatted.
|
|
15
|
+
(id: 6e3e54dfac9f)
|
|
16
|
+
|
|
17
|
+
## Missing Documentation
|
|
18
|
+
|
|
19
|
+
- [!] No documentation content was provided for analysis. The provided metadata lists documentation files but their contents are unavailable, making it impossible to verify accuracy, check for staleness, or identify contradictions with the codebase.
|
|
20
|
+
Files: All documentation files
|
|
21
|
+
Action: Provide the actual content of the documentation files listed in the metadata (e.g., README.md, API docs, configuration guides) to enable a proper analysis for staleness, contradictions, and gaps.
|
|
22
|
+
(id: fb1ef89d45a4)
|
|
23
|
+
|
|
24
|
+
- [?] The top-level source directories '__tests__' and 'components' have no associated documentation content provided. Recent commits mention features like 'debuger', 'monitor', 'accounts', and 'otp', which likely reside in these directories, but their documentation cannot be verified.
|
|
25
|
+
Files: __tests__, components
|
|
26
|
+
Action: Review and provide documentation for the '__tests__' and 'components' directories, ensuring it covers the features mentioned in recent commits (e.g., debug panel, OTP brute-force protection, monitoring integration).
|
|
27
|
+
(id: d538d5624ebb)
|
|
28
|
+
|
|
29
|
+
- [!] No dependencies were detected, but recent git commits show active dependency management (e.g., 'bump django-cfg version to 1.7.77', 'bump django-rq version to 4.0.0'). This indicates a contradiction between the reported state and project activity, and documentation for these key dependencies is missing.
|
|
30
|
+
Files: Dependency files (e.g., pyproject.toml, requirements.txt)
|
|
31
|
+
Action: Provide the actual dependency files (pyproject.toml, package.json, or requirements.txt) to check for contradictions with documentation and ensure all critical packages like 'django-cfg' and 'django-rq' are documented.
|
|
32
|
+
(id: fe7c9fa20e8b)
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
Model: deepseek/deepseek-v3.2 | Tokens: 1533
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Sidecar Review -- 2026-03-15T05:28:21.052657+00:00
|
|
2
|
+
|
|
3
|
+
## Staleness
|
|
4
|
+
|
|
5
|
+
- [?] Cannot assess staleness because documentation contents are unavailable. However, given the high commit activity (20 commits in 2 days), any documentation older than 30 days is almost certainly stale and contradictory to the current codebase state (e.g., new 'debuger', 'monitor', and OTP features).
|
|
6
|
+
Files: Documentation referenced in file list
|
|
7
|
+
Action: Provide documentation content to check modification dates against commit history. Update all documentation to reflect recent changes like the debug panel, monitoring integration, and OTP brute-force protection.
|
|
8
|
+
(id: 46040dd3aace)
|
|
9
|
+
|
|
10
|
+
## Contradictions
|
|
11
|
+
|
|
12
|
+
- [~] The commit 'updaded rq' (2026-03-14) has a typo and inconsistent formatting compared to other commits (e.g., 'chore(deps): bump django-rq version to 4.0.0'). This suggests poor documentation practices in commit messages, which can lead to confusion about project changes.
|
|
13
|
+
Files: Commit history analysis
|
|
14
|
+
Action: Enforce a commit message convention (e.g., Conventional Commits) and consider amending the 'updaded rq' commit for clarity. Ensure future commits are consistently formatted.
|
|
15
|
+
(id: 6e3e54dfac9f)
|
|
16
|
+
|
|
17
|
+
## Missing Documentation
|
|
18
|
+
|
|
19
|
+
- [!] No documentation content was provided for analysis. The provided metadata lists documentation files but their contents are unavailable, making it impossible to verify accuracy, check for staleness, or identify contradictions with the codebase.
|
|
20
|
+
Files: All documentation files
|
|
21
|
+
Action: Provide the actual content of the documentation files listed in the metadata (e.g., README.md, API docs, configuration guides) to enable a proper analysis for staleness, contradictions, and gaps.
|
|
22
|
+
(id: fb1ef89d45a4)
|
|
23
|
+
|
|
24
|
+
- [?] The top-level source directories '__tests__' and 'components' have no associated documentation content provided. Recent commits mention features like 'debuger', 'monitor', 'accounts', and 'otp', which likely reside in these directories, but their documentation cannot be verified.
|
|
25
|
+
Files: __tests__, components
|
|
26
|
+
Action: Review and provide documentation for the '__tests__' and 'components' directories, ensuring it covers the features mentioned in recent commits (e.g., debug panel, OTP brute-force protection, monitoring integration).
|
|
27
|
+
(id: d538d5624ebb)
|
|
28
|
+
|
|
29
|
+
- [!] No dependencies were detected, but recent git commits show active dependency management (e.g., 'bump django-cfg version to 1.7.77', 'bump django-rq version to 4.0.0'). This indicates a contradiction between the reported state and project activity, and documentation for these key dependencies is missing.
|
|
30
|
+
Files: Dependency files (e.g., pyproject.toml, requirements.txt)
|
|
31
|
+
Action: Provide the actual dependency files (pyproject.toml, package.json, or requirements.txt) to check for contradictions with documentation and ensure all critical packages like 'django-cfg' and 'django-rq' are documented.
|
|
32
|
+
(id: fe7c9fa20e8b)
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
Model: deepseek/deepseek-v3.2 | Tokens: 1533
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
context_files:
|
|
3
|
+
- All documentation files
|
|
4
|
+
created_at: '2026-03-15T05:28:21.056182Z'
|
|
5
|
+
id: T-001
|
|
6
|
+
priority: high
|
|
7
|
+
source: sidecar_review
|
|
8
|
+
source_item_id: fb1ef89d45a4
|
|
9
|
+
status: pending
|
|
10
|
+
title: '[gap] No documentation content was provided for analysis. The provided metadata
|
|
11
|
+
lists'
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
No documentation content was provided for analysis. The provided metadata lists documentation files but their contents are unavailable, making it impossible to verify accuracy, check for staleness, or identify contradictions with the codebase.
|
|
15
|
+
|
|
16
|
+
**Files:** All documentation files
|
|
17
|
+
|
|
18
|
+
**Action:** Provide the actual content of the documentation files listed in the metadata (e.g., README.md, API docs, configuration guides) to enable a proper analysis for staleness, contradictions, and gaps.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
context_files:
|
|
3
|
+
- __tests__
|
|
4
|
+
- components
|
|
5
|
+
created_at: '2026-03-15T05:28:21.057118Z'
|
|
6
|
+
id: T-002
|
|
7
|
+
priority: medium
|
|
8
|
+
source: sidecar_review
|
|
9
|
+
source_item_id: d538d5624ebb
|
|
10
|
+
status: pending
|
|
11
|
+
title: '[gap] The top-level source directories ''__tests__'' and ''components'' have
|
|
12
|
+
no associated'
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
The top-level source directories '__tests__' and 'components' have no associated documentation content provided. Recent commits mention features like 'debuger', 'monitor', 'accounts', and 'otp', which likely reside in these directories, but their documentation cannot be verified.
|
|
16
|
+
|
|
17
|
+
**Files:** __tests__, components
|
|
18
|
+
|
|
19
|
+
**Action:** Review and provide documentation for the '__tests__' and 'components' directories, ensuring it covers the features mentioned in recent commits (e.g., debug panel, OTP brute-force protection, monitoring integration).
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
context_files:
|
|
3
|
+
- Dependency files (e.g., pyproject.toml, requirements.txt)
|
|
4
|
+
created_at: '2026-03-15T05:28:21.057738Z'
|
|
5
|
+
id: T-003
|
|
6
|
+
priority: high
|
|
7
|
+
source: sidecar_review
|
|
8
|
+
source_item_id: fe7c9fa20e8b
|
|
9
|
+
status: pending
|
|
10
|
+
title: '[gap] No dependencies were detected, but recent git commits show active dependency
|
|
11
|
+
man'
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
No dependencies were detected, but recent git commits show active dependency management (e.g., 'bump django-cfg version to 1.7.77', 'bump django-rq version to 4.0.0'). This indicates a contradiction between the reported state and project activity, and documentation for these key dependencies is missing.
|
|
15
|
+
|
|
16
|
+
**Files:** Dependency files (e.g., pyproject.toml, requirements.txt)
|
|
17
|
+
|
|
18
|
+
**Action:** Provide the actual dependency files (pyproject.toml, package.json, or requirements.txt) to check for contradictions with documentation and ensure all critical packages like 'django-cfg' and 'django-rq' are documented.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
context_files:
|
|
3
|
+
- Documentation referenced in file list
|
|
4
|
+
created_at: '2026-03-15T05:28:21.058352Z'
|
|
5
|
+
id: T-004
|
|
6
|
+
priority: medium
|
|
7
|
+
source: sidecar_review
|
|
8
|
+
source_item_id: 46040dd3aace
|
|
9
|
+
status: pending
|
|
10
|
+
title: '[staleness] Cannot assess staleness because documentation contents are unavailable.
|
|
11
|
+
However,'
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
Cannot assess staleness because documentation contents are unavailable. However, given the high commit activity (20 commits in 2 days), any documentation older than 30 days is almost certainly stale and contradictory to the current codebase state (e.g., new 'debuger', 'monitor', and OTP features).
|
|
15
|
+
|
|
16
|
+
**Files:** Documentation referenced in file list
|
|
17
|
+
|
|
18
|
+
**Action:** Provide documentation content to check modification dates against commit history. Update all documentation to reflect recent changes like the debug panel, monitoring integration, and OTP brute-force protection.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
context_files:
|
|
3
|
+
- Commit history analysis
|
|
4
|
+
created_at: '2026-03-15T05:28:21.059002Z'
|
|
5
|
+
id: T-005
|
|
6
|
+
priority: low
|
|
7
|
+
source: sidecar_review
|
|
8
|
+
source_item_id: 6e3e54dfac9f
|
|
9
|
+
status: pending
|
|
10
|
+
title: '[contradiction] The commit ''updaded rq'' (2026-03-14) has a typo and inconsistent
|
|
11
|
+
formatting comp'
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
The commit 'updaded rq' (2026-03-14) has a typo and inconsistent formatting compared to other commits (e.g., 'chore(deps): bump django-rq version to 4.0.0'). This suggests poor documentation practices in commit messages, which can lead to confusion about project changes.
|
|
15
|
+
|
|
16
|
+
**Files:** Commit history analysis
|
|
17
|
+
|
|
18
|
+
**Action:** Enforce a commit message convention (e.g., Conventional Commits) and consider amending the 'updaded rq' commit for clarity. Ensure future commits are consistently formatted.
|