Skip to content

Commit

Permalink
Merge pull request #33 from vtb-open-api-2024/dev
Browse files Browse the repository at this point in the history
path fix
  • Loading branch information
polexka authored Nov 10, 2024
2 parents 881bbda + 3ac46f8 commit 56a7071
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/one-way-pages/receive-page/ReceivePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const ReceivePg = ({ waypoint = '/' }: iShareAppPG) => {
<h1 className={styles.header}>
<span>Поделитесь</span> Qr
</h1>
<img className={styles.qrCode} src="/public/qrCode.svg" alt="" />
<img className={styles.qrCode} src="/qrCode.svg" alt="" />
{/* QRCODE GENERATOR */}
{/* <QRCodeSVG
value={'test text'}
Expand Down
2 changes: 1 addition & 1 deletion src/one-way-pages/share-app/ShareAppPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const ShareAppPG = ({ waypoint = '/' }: iShareAppPG) => {
<h1 className={styles.header}>
<span>Поделитесь</span> приложением с друзьями
</h1>
<img className={styles.qrCode} src="/public/qrCode.svg" alt="" />
<img className={styles.qrCode} src="/qrCode.svg" alt="" />
<p className={styles.paragraph}>
И получите возможность обмениваться и дарить валюту
<span> друг с другом</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const TransActionPage = ({ transactionHandle }: iHeroPG) => {
<div className={styles.transactionInfo}>
<div className={styles.leftSide}>
<RubleIcon />
<p>{transactionInfo.sellAmmount}</p>
<p>-{transactionInfo.sellAmmount}</p>
</div>
<div className={styles.centerSide}>
<div>{transactionInfo.status == 'approved' ? <TransactionApprovedIcon /> : <TransactionDenyIcon />}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

.transactionInfo {
display: flex;
align-items: center;
align-items: baseline;
justify-content: center;
gap: 5px;
width: 100%;
Expand Down

0 comments on commit 56a7071

Please sign in to comment.