@isograph/react 0.0.0-main-ad4a21ae → 0.0.0-main-d210dfaf

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cache.js CHANGED
@@ -231,11 +231,9 @@ function getStoreKeyChunkForArgumentValue(argumentValue, variables) {
231
231
  switch (argumentValue.kind) {
232
232
  case 'Literal': {
233
233
  return argumentValue.value;
234
- break;
235
234
  }
236
235
  case 'Variable': {
237
236
  return variables[argumentValue.name];
238
- break;
239
237
  }
240
238
  default: {
241
239
  // TODO configure eslint to allow unused vars starting with _
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isograph/react",
3
- "version": "0.0.0-main-ad4a21ae",
3
+ "version": "0.0.0-main-d210dfaf",
4
4
  "description": "Use Isograph with React",
5
5
  "homepage": "https://isograph.dev",
6
6
  "main": "dist/index.js",
@@ -16,8 +16,8 @@
16
16
  "prepack": "yarn run test && yarn run compile"
17
17
  },
18
18
  "dependencies": {
19
- "@isograph/disposable-types": "0.0.0-main-ad4a21ae",
20
- "@isograph/react-disposable-state": "0.0.0-main-ad4a21ae",
19
+ "@isograph/disposable-types": "0.0.0-main-d210dfaf",
20
+ "@isograph/react-disposable-state": "0.0.0-main-d210dfaf",
21
21
  "react": "^18.2.0"
22
22
  },
23
23
  "devDependencies": {
package/src/cache.ts CHANGED
@@ -451,11 +451,9 @@ function getStoreKeyChunkForArgumentValue(
451
451
  switch (argumentValue.kind) {
452
452
  case 'Literal': {
453
453
  return argumentValue.value;
454
- break;
455
454
  }
456
455
  case 'Variable': {
457
456
  return variables[argumentValue.name];
458
- break;
459
457
  }
460
458
  default: {
461
459
  // TODO configure eslint to allow unused vars starting with _