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 0090549 commit 9269636Copy full SHA for 9269636
packages/graphql-playground-electron/src/InitialView/InitialView.tsx
@@ -89,9 +89,10 @@ class InitialView extends React.Component<
89
// Check if there is a .graphqlconfig file in the folder
90
if (
91
!existsSync(resolve(path, '.graphqlconfig')) &&
92
+ !existsSync(resolve(path, '.graphqlconfig.yml')) &&
93
!existsSync(resolve(path, '.graphqlconfig.yaml'))
94
) {
- alert('No .graphqlconfig (or .graphqlconfig.yaml) found in this folder')
95
+ alert('No .graphqlconfig found in this folder')
96
return
97
}
98
this.props.selectHistory({
0 commit comments