diff --git a/webapp/src/components/rhs/rhs_post_update_button.tsx b/webapp/src/components/rhs/rhs_post_update_button.tsx
index 957246a9aa..b3bcf8472d 100644
--- a/webapp/src/components/rhs/rhs_post_update_button.tsx
+++ b/webapp/src/components/rhs/rhs_post_update_button.tsx
@@ -2,13 +2,11 @@
// See LICENSE.txt for license information.
import React from 'react';
-import {FormattedMessage, useIntl} from 'react-intl';
+import {FormattedMessage} from 'react-intl';
import styled, {css} from 'styled-components';
import {DestructiveButton, PrimaryButton, TertiaryButton} from 'src/components/assets/buttons';
-import {useAIAvailable} from 'src/ai_integration';
-
interface Props {
collapsed: boolean;
isDue: boolean;
@@ -28,15 +26,13 @@ const RHSPostUpdateButton = (props: Props) => {
}
return (
-
-
-
-
-
+
+
+
);
};
@@ -44,13 +40,6 @@ interface CollapsedProps {
collapsed: boolean;
}
-const ButtonsContainer = styled.div`
- flex-grow: 1;
- display: flex;
- flex-direction: row;
- gap: 2px;
-`;
-
const PostUpdateButtonCommon = css`
justify-content: center;
flex: 1;