diff --git a/app/components/channel_list/__snapshots__/index.test.tsx.snap b/app/components/channel_list/__snapshots__/index.test.tsx.snap index 49acd1e40..2aa41ca63 100644 --- a/app/components/channel_list/__snapshots__/index.test.tsx.snap +++ b/app/components/channel_list/__snapshots__/index.test.tsx.snap @@ -17,7 +17,7 @@ exports[`components/channel_list should render channels error 1`] = ` "maxWidth": "100%", "paddingLeft": 18, "paddingRight": 20, - "paddingVertical": 10, + "paddingTop": 10, } } > @@ -187,7 +187,7 @@ exports[`components/channel_list should render team error 1`] = ` "maxWidth": "100%", "paddingLeft": 18, "paddingRight": 20, - "paddingVertical": 10, + "paddingTop": 10, } } > diff --git a/app/components/channel_list/index.tsx b/app/components/channel_list/index.tsx index 61013b9bc..952caf5c2 100644 --- a/app/components/channel_list/index.tsx +++ b/app/components/channel_list/index.tsx @@ -21,7 +21,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ backgroundColor: theme.sidebarBg, paddingLeft: 18, paddingRight: 20, - paddingVertical: 10, + paddingTop: 10, }, }));