Skip to content

Commit

Permalink
Fix a few misc. issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ssciolla committed Jan 4, 2021
1 parent c698316 commit 54f18fc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/assets/src/components/queueManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ interface QueueManagerProps {
deleteMeetingChangeEvent: (key: number) => void;
}

function QueueManager (props: React.PropsWithChildren<QueueManagerProps>) {
function QueueManager (props: QueueManagerProps) {
const spacingClass = 'mt-4';

let startedMeetings = [];
Expand Down
2 changes: 1 addition & 1 deletion src/assets/src/hooks/usePreviousState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ export function usePreviousState(value: any): any {
ref.current = value;
});
return ref.current;
}
}
1 change: 0 additions & 1 deletion src/assets/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ export const isMeeting = (entity: object): entity is Meeting => {
return 'attendees' in entity;
}


export interface QueueBase extends Base {
name: string;
status: "open" | "closed";
Expand Down

0 comments on commit 54f18fc

Please sign in to comment.