diff --git a/index.tsx b/index.tsx
index 7126975..dd00833 100644
--- a/index.tsx
+++ b/index.tsx
@@ -27,8 +27,8 @@ function OutputVolumeComponent() {
return (
<>
- {Settings.plugins.VCPanelSettings.showOutputVolumeHeader && Output volume - {Math.floor(outputVolume)}%}
- {
+ {Settings.plugins.VCPanelSettings.showOutputVolumeHeader && Output volume}
+ `${v.toFixed(0)}%`} initialValue={outputVolume} asValueChanges={volume => {
FluxDispatcher.dispatch({
type: "AUDIO_SET_OUTPUT_VOLUME",
volume
@@ -48,8 +48,8 @@ function InputVolumeComponent() {
return (
<>
- {Settings.plugins.VCPanelSettings.showInputVolumeHeader && Input volume - {Math.floor(inputVolume)}%}
- {
+ {Settings.plugins.VCPanelSettings.showInputVolumeHeader && Input volume}
+ {
FluxDispatcher.dispatch({
type: "AUDIO_SET_INPUT_VOLUME",
volume