Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fixed headers in user setting tabs #4335 (pr:no public docs) #5175

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ export const Tabs = ({
/>
)}
{showGoogleCalendarTab && (
<Tab
<Tab"Google Calendar"
active={activeTab === UserSettingsTab.GoogleCalendar}
label="Google Calendar"
label=
key={UserSettingsTab.GoogleCalendar}
onChangeTab={getTabClickHandler(UserSettingsTab.GoogleCalendar)}
data-testid="google-calendar-tab"
Expand All @@ -90,7 +90,7 @@ export const Tabs = ({
{showMobileAppConnectionTab && (
<Tab
active={activeTab === UserSettingsTab.MobileAppConnection}
label="Mobile App Connection"
label="Mobile App"
key={UserSettingsTab.MobileAppConnection}
onChangeTab={getTabClickHandler(UserSettingsTab.MobileAppConnection)}
data-testid="tab-mobile-app"
Expand All @@ -99,7 +99,7 @@ export const Tabs = ({
{showSlackConnectionTab && (
<Tab
active={activeTab === UserSettingsTab.SlackInfo}
label="Slack Connection"
label="Slack"
key={UserSettingsTab.SlackInfo}
onChangeTab={getTabClickHandler(UserSettingsTab.SlackInfo)}
data-testid="tab-slack"
Expand All @@ -108,7 +108,7 @@ export const Tabs = ({
{showTelegramConnectionTab && (
<Tab
active={activeTab === UserSettingsTab.TelegramInfo}
label="Telegram Connection"
label="Telegram"
key={UserSettingsTab.TelegramInfo}
onChangeTab={getTabClickHandler(UserSettingsTab.TelegramInfo)}
data-testid="tab-telegram"
Expand All @@ -117,7 +117,7 @@ export const Tabs = ({
{showMsTeamsConnectionTab && (
<Tab
active={activeTab === UserSettingsTab.MSTeamsInfo}
label="Ms Teams Connection"
label="MS Teams"
key={UserSettingsTab.MSTeamsInfo}
onChangeTab={getTabClickHandler(UserSettingsTab.MSTeamsInfo)}
data-testid="tab-msteams"
Expand Down