diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/userVoiceShow/index.tsx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/plugins/userVoiceShow/index.tsx b/src/plugins/userVoiceShow/index.tsx index d0252c1..3a1f6fe 100644 --- a/src/plugins/userVoiceShow/index.tsx +++ b/src/plugins/userVoiceShow/index.tsx @@ -57,11 +57,13 @@ const VoiceChannelField = ErrorBoundary.wrap(({ user }: UserProps) => { const result = `${guild.name} | ${channel.name}`; return ( - <VoiceChannelSection - channel={channel} - label={result} - showHeader={settings.store.showVoiceChannelSectionHeader} - /> + <div style={{ marginBottom: 14 }}> + <VoiceChannelSection + channel={channel} + label={result} + showHeader={settings.store.showVoiceChannelSectionHeader} + /> + </div> ); }); |