Skip to content

Commit

Permalink
for contest
Browse files Browse the repository at this point in the history
Wish to be proud of an App, but unfortunately sending audio back to users in message does not work.
  • Loading branch information
KindSpidey committed Oct 10, 2023
1 parent 61d2069 commit 8c03b19
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions music-studio/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
.pnp.js
src/.config.js
src/.not.js

# testing
/coverage

Expand Down
5 changes: 5 additions & 0 deletions music-studio/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,11 @@ function App() {
<label className="slider-label">Bass Boost</label>
<input className="slider" type="range" min="-10" max="10" step="0.1" value={bassBoost} onChange={handleBassBoostChange} />
<div className="slider-value">{bassBoost}</div>
<div className="convert-wrapper">
<button className="convert-another" onClick={sendAudioToTelegram}>
Download song
</button>
</div>
<div className="convert-wrapper">
<label className="convert-another" htmlFor="convertInput">
Convert Another Song
Expand Down
2 changes: 1 addition & 1 deletion music-studio/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ body {
font-weight: bold;
border: 3px solid;
border-radius: 13px;

font-size: 16px;
cursor: pointer;
width: 100%;
}
Expand Down

0 comments on commit 8c03b19

Please sign in to comment.