Skip to content

Commit

Permalink
fix: Fix error in AppStore (#4234)
Browse files Browse the repository at this point in the history
Co-authored-by: niuyx <[email protected]>
  • Loading branch information
nyuxiao and niuyx authored Oct 30, 2023
1 parent 4d52db8 commit bff4820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/apps/containers/Home/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export default class Home extends React.Component {
className={classnames(styles.item, {
[styles.active]: category === cateLatest,
})}
onClick={() => this.handleClickCate(cateLatest)}
onClick={() => this.handleClickCate(cateLatest, t('NEW_APPS'))}
>
<Icon name="cart" size={16} type="dark" className={styles.icon} />
<span className={styles.name}>{t('NEW_APPS')}</span>
Expand Down

0 comments on commit bff4820

Please sign in to comment.