Skip to content

Commit 10e714a

Browse files
committed
Don’t show Dev:you anymore
1 parent c1b9426 commit 10e714a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/webapp/app/v3/environmentVariables/environmentVariablesRepository.server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
RuntimeEnvironmentType,
66
} from "@trigger.dev/database";
77
import { z } from "zod";
8-
import { environmentTitle } from "~/components/environments/EnvironmentLabel";
8+
import { environmentFullTitle, environmentTitle } from "~/components/environments/EnvironmentLabel";
99
import { $transaction, prisma } from "~/db.server";
1010
import { env } from "~/env.server";
1111
import { getSecretStore } from "~/services/secrets/secretStore.server";
@@ -128,7 +128,7 @@ export class EnvironmentVariablesRepository implements Repository {
128128
variableErrors: existingVariableKeys.map((val) => ({
129129
key: val.key,
130130
error: `Variable already set in ${val.environments
131-
.map((e) => environmentTitle({ type: e }))
131+
.map((e) => environmentFullTitle({ type: e }))
132132
.join(", ")}.`,
133133
})),
134134
};

0 commit comments

Comments
 (0)