We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8e6ebe commit 76f6c7bCopy full SHA for 76f6c7b
apps/webapp/app/components/environments/EnvironmentLabel.tsx
@@ -139,11 +139,7 @@ export function EnvironmentLabel({
139
}
140
141
export function EnvironmentSlug({ environment }: { environment: Environment & { slug: string } }) {
142
- return (
143
- <span className={cn("text-sm text-text-bright", environmentTextClassName(environment))}>
144
- {environment.slug}
145
- </span>
146
- );
+ return <span className={environmentTextClassName(environment)}>{environment.slug}</span>;
147
148
149
export function environmentTitle(environment: Environment, username?: string) {
0 commit comments