diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 2f1d2b55e5b4..10c87584bab0 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -6475,6 +6475,10 @@ }, "icu:Stories__placeholder-with-icon--text": { "messageformat": "Click Add a story to add an update.", + "description": "(Deleted 2024/08/22) Placeholder label for the story view" + }, + "icu:Stories__placeholder-with-icon--text-2": { + "messageformat": "Click to add an update.", "description": "Placeholder label for the story view" }, "icu:Stories__from-to-group": { @@ -7199,6 +7203,10 @@ }, "icu:CallsTab__EmptyStateText--with-icon": { "messageformat": "Click New Call to start a new voice or video call.", + "description": "(Deleted 2024/08/22) Calls Tab > When no call is selected > Empty state > Call to action text" + }, + "icu:CallsTab__EmptyStateText--with-icon-2": { + "messageformat": "Click to start a new voice or video call.", "description": "Calls Tab > When no call is selected > Empty state > Call to action text" }, "icu:CallsList__SearchInputPlaceholder": { diff --git a/ts/components/CallsTab.tsx b/ts/components/CallsTab.tsx index 18264db15820..f04e150866dd 100644 --- a/ts/components/CallsTab.tsx +++ b/ts/components/CallsTab.tsx @@ -319,19 +319,14 @@ export function CallsTab({

{ - let label: string | undefined; - const first = children[0]; - if (typeof first === 'string') { - label = first; - } + newCallButtonIcon: () => { return ( ); }, diff --git a/ts/components/StoriesTab.tsx b/ts/components/StoriesTab.tsx index 6860ada8ed0b..5aee282f51e0 100644 --- a/ts/components/StoriesTab.tsx +++ b/ts/components/StoriesTab.tsx @@ -225,19 +225,14 @@ export function StoriesTab({ ) : ( { - let label: string | undefined; - const first = children[0]; - if (typeof first === 'string') { - label = first; - } + newStoryButtonIcon: () => { return ( ); },