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:
2026-02-26 19:13:55 +03:00
parent 0b72cc4a4d
commit 0606f93146
2 changed files with 3 additions and 5 deletions
+1 -3
View File
@@ -17,9 +17,7 @@ const RewardsSection = lazy(() =>
const WalletSection = lazy(() => const WalletSection = lazy(() =>
import('@/sections/Wallet').then((m) => ({ default: m.WalletSection })) import('@/sections/Wallet').then((m) => ({ default: m.WalletSection }))
); );
const P2PSection = lazy(() => const P2PSection = lazy(() => import('@/sections/P2P').then((m) => ({ default: m.P2PSection })));
import('@/sections/P2P').then((m) => ({ default: m.P2PSection }))
);
const CitizenPage = lazy(() => const CitizenPage = lazy(() =>
import('@/pages/CitizenPage').then((m) => ({ default: m.CitizenPage })) import('@/pages/CitizenPage').then((m) => ({ default: m.CitizenPage }))
); );
+2 -2
View File
@@ -306,12 +306,12 @@ const tr: Translations = {
p2p: { p2p: {
title: 'P2P Borsa', title: 'P2P Borsa',
subtitle: 'Eşler arası kripto alım-satım', 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: [ steps: [
'Aşağıdaki butona tıklayarak web uygulamasını açın', 'Aşağıdaki butona tıklayarak web uygulamasını açın',
'Hesap oluşturun veya giriş yapın', 'Hesap oluşturun veya giriş yapın',
'Kurulum sürecini tamamlayı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.', note: 'Web uygulaması yeni bir pencerede açılacaktır.',
button: 'P2P Platformunu Aç', button: 'P2P Platformunu Aç',