Skip to content

Commit

Permalink
Hide some things for a quick release
Browse files Browse the repository at this point in the history
This just supports random and searches for now.

TODO: revert this commit at a later time, likely right after this.
  • Loading branch information
ctsstc committed Nov 4, 2021
1 parent dace893 commit 6e5196a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions components/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const Player = () => {
value={currentProgress}
/>
</div>
<span className={styles.player_controls_prev}>Prev</span>
{/* <span className={styles.player_controls_prev}>Prev</span> */}
<span className={styles.player_controls_play} onClick={play}>
Play
</span>
Expand All @@ -64,11 +64,11 @@ const Player = () => {
>
Stop
</span>
<span className={styles.player_controls_next}>Next</span>
{/* <span className={styles.player_controls_next}>Next</span> */}
<span className={styles.player_controls_shuffle} onClick={shuffle}>
Shuffle
</span>
<span className={styles.player_controls_repeat}>Repeat</span>
{/* <span className={styles.player_controls_repeat}>Repeat</span> */}
<span className={styles.player_controls_volume}>
<input
className={styles.slider}
Expand Down
6 changes: 3 additions & 3 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Head from 'next/head'
import styles from '../styles/Home.module.sass'
import Player from '../components/player'
import SearchAndResults from '../components/search-and-results'
import Playlists from '../components/playlist/playlists'
// import Playlists from '../components/playlist/playlists'
import { useCallback, useContext, useEffect, useState } from 'react'
import { SONGS_BASE_URL } from '../components/helpers/constants'
import { Howl } from 'howler'
Expand Down Expand Up @@ -81,9 +81,9 @@ export default function Home() {
<SearchAndResults />
</div>
</div>
<div className={styles.right}>
{/* <div className={styles.right}>
<Playlists />
</div>
</div> */}
</div>
</div>
)
Expand Down

0 comments on commit 6e5196a

Please sign in to comment.