Skip to content

Commit 61ad1b1

Browse files
MichaelSun48roaga
authored andcommitted
fix(custom-views): Fix incorrect formatting for translate wrapper (#75211)
1 parent 441efab commit 61ad1b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

static/app/components/draggableTabs/draggableTabList.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import {type BaseTabProps, Tab} from 'sentry/components/tabs/tab';
1616
import {OverflowMenu, useOverflowTabs} from 'sentry/components/tabs/tabList';
1717
import {tabsShouldForwardProp} from 'sentry/components/tabs/utils';
1818
import {IconAdd} from 'sentry/icons';
19+
import {t} from 'sentry/locale';
1920
import {space} from 'sentry/styles/space';
2021
import {browserHistory} from 'sentry/utils/browserHistory';
2122

@@ -155,7 +156,7 @@ function BaseDraggableTabList({
155156
))}
156157
<AddViewButton borderless size="zero" onClick={onAddView}>
157158
<StyledIconAdd size="xs" />
158-
t('Add View')
159+
{t('Add View')}
159160
</AddViewButton>
160161
<TabDivider />
161162
{showTempTab && tempTab && (

0 commit comments

Comments
 (0)