-
Notifications
You must be signed in to change notification settings - Fork 1.3k
tweak: adjust disabled colors for gray variant #978
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -94,14 +94,14 @@ export function CustomDomain() { | |||||||||||||
| Custom Domain | ||||||||||||||
| </h1> | ||||||||||||||
| <p className="w-full text-sm text-gray-10"> | ||||||||||||||
| Set up a custom domain for your organization's shared caps. | ||||||||||||||
| Setup a custom domain for your organization's shared caps. | ||||||||||||||
| </p> | ||||||||||||||
| </div> | ||||||||||||||
| </div> | ||||||||||||||
| <div className="flex flex-1 gap-2 justify-between items-center w-full"> | ||||||||||||||
| <div className="flex gap-2 justify-between items-center px-3 flex-1 h-[44px] rounded-xl border bg-gray-2 border-gray-3"> | ||||||||||||||
| <p className="text-[13px] text-gray-10"> | ||||||||||||||
| {orgCustomDomain || "No custom domain"} | ||||||||||||||
| <p className="text-[13px] text-gray-8"> | ||||||||||||||
| {orgCustomDomain || "No custom domain has been setup"} | ||||||||||||||
| </p> | ||||||||||||||
|
Comment on lines
+103
to
105
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix grammar in fallback text. Use “set up” (verb) and a period. - <p className="text-[13px] text-gray-8">
- {orgCustomDomain || "No custom domain has been setup"}
+ <p className="text-[13px] text-gray-8">
+ {orgCustomDomain || "No custom domain has been set up."}📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
| <div className="flex items-center"> | ||||||||||||||
| {orgCustomDomain && isVerified ? ( | ||||||||||||||
|
|
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix grammar: use “Set up” (verb), not “Setup”.
Apply:
📝 Committable suggestion
🤖 Prompt for AI Agents