Skip to content

Commit

Permalink
Fix types for spotify tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop committed Aug 19, 2024
1 parent d661b98 commit 74db02e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app/app/components/PlayQueue/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useMemo, useState } from 'react';
import React, { useState } from 'react';
import classnames from 'classnames';
import _, { head } from 'lodash';
import { DragDropContext, Droppable, Draggable } from 'react-beautiful-dnd';
Expand Down
3 changes: 2 additions & 1 deletion packages/core/src/plugins/meta/spotify.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,8 @@ describe('SpotifyMetaProvider', () => {
track_number: 1,
name: 'test track',
artists: [{ name: 'test artist' }],
duration_ms: 1000
duration_ms: 1000,
type: 'track'
}]
},
href: 'album-href'
Expand Down

0 comments on commit 74db02e

Please sign in to comment.