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 8ba820f commit 37ccc0aCopy full SHA for 37ccc0a
1 file changed
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