Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal committed Jul 25, 2024
1 parent 4fa3714 commit 367b0a6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/gui/providers/full-editor-provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export function FullEditorProvider({ children }: PropsWithChildren) {
const props = useMemo(() => {
return {
openEditor: (opt: FullEditorOption) => {
console.log(opt);
setOption({
initialValue: opt.initialValue,
format: opt.format,
Expand Down
1 change: 0 additions & 1 deletion src/lib/download-file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@ function extractCredentialsAndPrepareHeaders(url: string) {

export default function downloadFileFromUrl(url: string) {
const { cleanedUrl, options } = extractCredentialsAndPrepareHeaders(url);
console.log(cleanedUrl, options);
return fetch(cleanedUrl, options).then((r) => r.arrayBuffer());
}

0 comments on commit 367b0a6

Please sign in to comment.