mirror of
https://github.com/pezkuwichain/pezkuwi-telegram-miniapp.git
synced 2026-04-21 23:37:55 +00:00
fix: resolve remaining lint errors in App.tsx and tr.ts
- Fix prettier formatting for lazy import in App.tsx - Use double quotes for Turkish strings containing apostrophes
This commit is contained in:
+1
-3
@@ -17,9 +17,7 @@ const RewardsSection = lazy(() =>
|
||||
const WalletSection = lazy(() =>
|
||||
import('@/sections/Wallet').then((m) => ({ default: m.WalletSection }))
|
||||
);
|
||||
const P2PSection = lazy(() =>
|
||||
import('@/sections/P2P').then((m) => ({ default: m.P2PSection }))
|
||||
);
|
||||
const P2PSection = lazy(() => import('@/sections/P2P').then((m) => ({ default: m.P2PSection })));
|
||||
const CitizenPage = lazy(() =>
|
||||
import('@/pages/CitizenPage').then((m) => ({ default: m.CitizenPage }))
|
||||
);
|
||||
|
||||
@@ -306,12 +306,12 @@ const tr: Translations = {
|
||||
p2p: {
|
||||
title: 'P2P Borsa',
|
||||
subtitle: 'Eşler arası kripto alım-satım',
|
||||
firstTime: 'P2P\'yi ilk kez mi kullanıyorsun?',
|
||||
firstTime: "P2P'yi ilk kez mi kullanıyorsun?",
|
||||
steps: [
|
||||
'Aşağıdaki butona tıklayarak web uygulamasını açın',
|
||||
'Hesap oluşturun veya giriş yapın',
|
||||
'Kurulum sürecini tamamlayın',
|
||||
'Kurulumdan sonra P2P\'ye doğrudan erişebilirsiniz',
|
||||
"Kurulumdan sonra P2P'ye doğrudan erişebilirsiniz",
|
||||
],
|
||||
note: 'Web uygulaması yeni bir pencerede açılacaktır.',
|
||||
button: 'P2P Platformunu Aç',
|
||||
|
||||
Reference in New Issue
Block a user