🚨 Removed some linter warnings and unused import
This commit is contained in:
parent
d3e9c73e17
commit
4d259dc2e5
2 changed files with 2 additions and 3 deletions
|
@ -9,8 +9,8 @@ import Store from "./store";
|
|||
import hooks from "./hooks";
|
||||
import Attributes from "./attributes";
|
||||
|
||||
export default function Pattern(config = false) {
|
||||
this.config = config || {}; // Pattern configuration
|
||||
export default function Pattern(config = { options: {} }) {
|
||||
this.config = config; // Pattern configuration
|
||||
this.width = false; // Will be set after render
|
||||
this.height = false; // Will be set after render
|
||||
this.is = ""; // Will be set when drafting/sampling
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue