Skip to content

Commit

Permalink
graphql possibleTypes: Fix formatting (redwoodjs#9239)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe authored Sep 29, 2023
1 parent 18555d0 commit 8c22d4d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions __fixtures__/test-project/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
},
"devDependencies": {
"@redwoodjs/vite": "6.0.7",
"autoprefixer": "^10.4.15",
"postcss": "^8.4.30",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier-plugin-tailwindcss": "0.4.1",
"tailwindcss": "^3.3.3"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

const result = {
"possibleTypes": {}
possibleTypes: {},
}

export default result
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@

export interface PossibleTypesResultData {
possibleTypes: {
[key: string]: string[]
}
}

const result: PossibleTypesResultData = {
"possibleTypes": {}
possibleTypes: {},
}

export default result;
export default result

0 comments on commit 8c22d4d

Please sign in to comment.