removed images

This commit is contained in:
ismail 2026-02-03 17:21:41 +01:00
parent f0d259a8a8
commit ece05d7285
18 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 421 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 508 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 421 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 508 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 421 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 508 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 447 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 421 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 508 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

View File

@ -89,7 +89,7 @@ export default function MePage() {
setSetupError('');
setSetupSuccess('');
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('token') || sessionStorage.getItem('token');
const res = await fetch('/api/auth/2fa/setup', {
headers: { 'Authorization': `Bearer ${token}` }
});
@ -108,7 +108,7 @@ export default function MePage() {
setSetupError('');
setActionLoading(true);
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('token') || sessionStorage.getItem('token');
const res = await fetch('/api/auth/2fa/verify', {
method: 'POST',
headers: {
@ -142,7 +142,7 @@ export default function MePage() {
setSetupError('');
setSetupSuccess('');
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('token') || sessionStorage.getItem('token');
const res = await fetch('/api/auth/2fa/disable', {
method: 'POST',
headers: { 'Authorization': `Bearer ${token}` }
@ -166,7 +166,7 @@ export default function MePage() {
setActionLoading(true);
setSetupError('');
try {
const token = localStorage.getItem('token');
const token = localStorage.getItem('token') || sessionStorage.getItem('token');
const res = await fetch('/api/auth/newsletter/toggle', {
method: 'POST',
headers: {