Skip to content

Commit

Permalink
🥕 v0.17.0-b19 🌱 ThreeD: Home Design
Browse files Browse the repository at this point in the history
  • Loading branch information
marty-mcgee committed Jan 7, 2025
1 parent 2cdb821 commit b8be20c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/lib/api/graphql/apollo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ const preferencesDataVarDefaults =
// set functions
setPreferencesDataVar: () => {}, // function: set properties of "this"
}
// export const isCanvasStateSetVar: Function = makeVar(false) // boolean: false | true
// export const isCanvasStateSetVar = makeVar(false) // boolean: false | true
const canvasStateVarDefaults: Object =
{
// user prefs
Expand All @@ -878,8 +878,8 @@ const canvasStateVarDefaults: Object =

// ==============================================================

export const isPaperCanvasLoadedVar: Function = makeVar(false) // boolean: false | true
export const isThreeDCanvasLoadedVar: Function = makeVar(false) // boolean: false | true
export const isPaperCanvasLoadedVar = makeVar(false) // boolean: false | true
export const isThreeDCanvasLoadedVar = makeVar(false) // boolean: false | true

// ==============================================================

Expand Down Expand Up @@ -943,12 +943,12 @@ export const stores = {
}

// ** REACTIVE VARS
export const preferencesDataVar: Function = makeVar(preferencesDataVarDefaults)
export const preferencesDataVar = makeVar(preferencesDataVarDefaults)
console.debug('preferencesDataVar', preferencesDataVar())
export const isPreferencesDataSetVar: Function = makeVar(false) // boolean: false | true
export const canvasStateVar: Function = makeVar(canvasStateVarDefaults)
export const isPreferencesDataSetVar = makeVar(false) // boolean: false | true
export const canvasStateVar = makeVar(canvasStateVarDefaults)
console.debug('canvasStateVar', canvasStateVar())
export const isCanvasStateSetVar: Function = makeVar(false) // boolean: false | true
export const isCanvasStateSetVar = makeVar(false) // boolean: false | true
// ** export REACTIVE VARS
export const reactiveVars = {
preferencesDataVar,
Expand Down

0 comments on commit b8be20c

Please sign in to comment.