Skip to content

Commit

Permalink
- Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
duduBTW committed Nov 1, 2024
1 parent 5674806 commit d0bb529
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/renderer/src/components/select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export const SelectContent: Component<ListProps> = (props) => {
const width = createMemo(() => {
state.isOpen();
const trigger = state.triggerRef();
console.log("trigger", trigger?.getBoundingClientRect());
if (!trigger) {
return "0px";
}
Expand Down
1 change: 0 additions & 1 deletion src/renderer/src/components/song/color-extractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export function useColorExtractor() {

try {
const colors = await extractColorsFromImage(src);
console.log("colors", colors);
if (!colors.primaryColor || !colors.secondaryColor) {
return;
}
Expand Down

0 comments on commit d0bb529

Please sign in to comment.