Skip to content
Merged
Show file tree
Hide file tree
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
22 changes: 4 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,10 @@
"@kyper/icon": "^1.18.1",
"@kyper/messagebox": "^3.1.0",
"@kyper/progressindicators": "^3.1.0",
"@kyper/tag": "^3.0.0",
"@kyper/tokenprovider": "^4.0.1",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.1.5",
"@mxenabled/mxui": "^1.7.0",
"@mxenabled/mxui": "^1.8.0",
"@reduxjs/toolkit": "^2.2.7",
"@types/node": "^22.1.0",
"bowser": "^2.11.0",
Expand Down
7 changes: 3 additions & 4 deletions src/views/microdeposits/SharedRoutingNumber.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import React, { useRef } from 'react'
import PropTypes from 'prop-types'

import { Text, Icon } from '@mxenabled/mxui'
import { Tag, Text, Icon } from '@mxenabled/mxui'
import { Stack } from '@mui/material'
import { Tag } from '@kyper/tag'

import { __ } from 'src/utilities/Intl'

Expand Down Expand Up @@ -40,7 +39,7 @@ export const SharedRoutingNumber = (props) => {
<Text className={styles.subTitle} component="h3" truncate={false} variant="H3">
{__('Instant')}
</Text>
<Tag size={'small'} title={__('Recommended')} variant={'success'} />
<Tag color="success" label={__('Recommended')} size="small" />
</Stack>
<Text truncate={false} variant="Paragraph">
{
Expand Down Expand Up @@ -73,7 +72,7 @@ export const SharedRoutingNumber = (props) => {
<Text className={styles.subTitle} component="h3" truncate={false} variant="H3">
{__('2-3 days')}
</Text>
<Tag size={'small'} title={__('Manual')} variant={'warning'} />
<Tag color="warning" label={__('Manual')} size="small" />
</Stack>
<div className={styles.actionTile}>
<ActionTile
Expand Down
Loading