diff --git a/webapp/channels/src/components/drafts/draft_actions/__snapshots__/action.test.tsx.snap b/webapp/channels/src/components/drafts/draft_actions/__snapshots__/action.test.tsx.snap
index b842937939..16e55513a0 100644
--- a/webapp/channels/src/components/drafts/draft_actions/__snapshots__/action.test.tsx.snap
+++ b/webapp/channels/src/components/drafts/draft_actions/__snapshots__/action.test.tsx.snap
@@ -5,16 +5,17 @@ exports[`components/drafts/draft_actions/action should match snapshot 1`] = `
className="DraftAction"
>
diff --git a/webapp/channels/src/components/drafts/draft_actions/action.test.tsx b/webapp/channels/src/components/drafts/draft_actions/action.test.tsx
index 9bb66b74e7..db9a21b3f4 100644
--- a/webapp/channels/src/components/drafts/draft_actions/action.test.tsx
+++ b/webapp/channels/src/components/drafts/draft_actions/action.test.tsx
@@ -8,11 +8,11 @@ import Action from './action';
describe('components/drafts/draft_actions/action', () => {
const baseProps = {
- icon: '',
- id: '',
- name: '',
+ icon: 'some-icon',
+ id: 'some-id',
+ name: 'some-name',
onClick: jest.fn(),
- tooltipText: '',
+ tooltipText: 'some-tooltip-text',
};
it('should match snapshot', () => {
diff --git a/webapp/channels/src/components/drafts/draft_actions/action.tsx b/webapp/channels/src/components/drafts/draft_actions/action.tsx
index e3e772ab94..27b433a3d6 100644
--- a/webapp/channels/src/components/drafts/draft_actions/action.tsx
+++ b/webapp/channels/src/components/drafts/draft_actions/action.tsx
@@ -27,6 +27,7 @@ function Action({