1
0
Fork 0

fix(fs.shared): Linter warnings

This commit is contained in:
Joost De Cock 2022-01-25 10:03:10 +01:00
parent 893099e283
commit 490f48f726
4 changed files with 14 additions and 11 deletions

View file

@ -21,7 +21,7 @@ const defaultGist = (pattern, language='en') => ({
const hasRequiredMeasurements = (pattern, gist) => {
for (const m of pattern.config.measurements) {
console.log(m)
//console.log(m)
}
}
@ -75,6 +75,8 @@ const WorkbenchWrapper = ({ app, pattern }) => {
updateGist={updateGist}
/>
)}
<pre>{JSON.stringify(mode, null, 2)}</pre>
<pre>{JSON.stringify(gist, null, 2)}</pre>
</Layout>
)
}