Skip to content

Commit

Permalink
chore: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Marino Rottier committed Aug 29, 2024
1 parent 8215a8d commit 6cedcad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Composer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { createContext, ReactNode, useContext, useEffect, useState } from 'react';
import { AudioGraph, AudioGraphLink, AudioGraphNodes } from '../core/AudioGraph';
import { AudioGraph, AudioGraphLink } from '../core/AudioGraph';
import { DndContext, DragOverlay, useDndMonitor } from '@dnd-kit/core';
import { NodeTypes } from './Editor/Nodes';
import { AudioGraphNode } from '../core/AudioGraph/AudioGraphNode';
Expand Down
1 change: 1 addition & 0 deletions src/core/AudioGraph/Nodes/AudioGraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ export class AudioGraph extends AudioGraphNode {
};

constructor(context?: AudioContext, graph?: AudioGraph, loadSerialized?: any) {
loadSerialized;
let audioContext: AudioContext;
// Allow to supply a custom audio context
if (context) audioContext = context;
Expand Down

0 comments on commit 6cedcad

Please sign in to comment.