Skip to content

Commit 716554c

Browse files
committed
fix: wrong loop
1 parent 4c47250 commit 716554c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/src/commands/codegen/gqltada.spinner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ async function codegenTsconfig() {
6868
const graphqlspPlugin = tsconfig.config.compilerOptions.plugins.find((plugin) => plugin.name === "@0no-co/graphqlsp");
6969
if (graphqlspPlugin) {
7070
tsconfig.config.compilerOptions.plugins = tsconfig.config.compilerOptions.plugins.filter(
71-
(plugin) => plugin.name === "@0no-co/graphqlsp",
71+
(plugin) => plugin.name !== "@0no-co/graphqlsp",
7272
);
7373
}
7474
tsconfig.config.compilerOptions.plugins.push(tadaConfig);

0 commit comments

Comments
 (0)