ingrammicro / puzzle-tokens

Batch create, manage and update Sketch styles and symbols using SCSS/LESS
GNU General Public License v3.0
92 stars 17 forks source link

Change declaration of updateFill from const to var #30

Closed bigmediumjosh closed 4 years ago

bigmediumjosh commented 4 years ago

Line 1301 assigns a new value to updateFill, which threw an error since updateFill is declared as a constant: "TypeError: Attempted to assign to readonly property." Changing to var fixes it.