Skip to content

Commit

Permalink
refactor: remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
taco-paco committed Jul 22, 2024
1 parent 0d35f8c commit 4126e6a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions plugin/src/features/Compilation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,6 @@ const Compilation: React.FC<CompilationProps> = ({ setAccordian }) => {
// const get all values of allFiles object
const allFilesValues = Object.values(allFiles)

console.log('allFiles', allFiles)
for (let i = 0; i < allFilesKeys.length; i++) {
if (
allFilesKeys[i].endsWith('Scarb.toml') ||
Expand Down Expand Up @@ -784,7 +783,6 @@ const Compilation: React.FC<CompilationProps> = ({ setAccordian }) => {
}
}
const checkVal = Object.values(allFilesValues[i])[0]
console.log('checkVal', checkVal, allFilesValues[i], checkVal === '', checkVal === null, checkVal === undefined, isEmpty(checkVal))
// TODO(edwin): the check doesn't do anything
if (!isEmpty(checkVal)) {
await saveScarbWorkspace(workspacePath, allFilesKeys[i])
Expand Down

0 comments on commit 4126e6a

Please sign in to comment.