refactor: Remove unused getCurrentUser function and clean up imports in events.ts

- Eliminate the unused getCurrentUser function from useAuth.ts to streamline authentication logic.
- Clean up imports in events.ts by removing the unused Event type, enhancing code clarity and maintainability.
This commit is contained in:
padreug 2025-08-01 23:11:48 +02:00
parent 0cc0bf3555
commit d9523cc784
2 changed files with 3 additions and 14 deletions

View file

@ -1,4 +1,4 @@
import type { Event, EventsApiError, Ticket } from '../types/event'
import type { Event, Ticket } from '../types/event'
import { config } from '@/lib/config'
import { lnbitsAPI } from './lnbits'
@ -72,7 +72,7 @@ export async function purchaseTicket(eventId: string): Promise<{ payment_hash: s
}
}
export async function payInvoiceWithWallet(paymentRequest: string, walletId: string, adminKey: string): Promise<{ payment_hash: string; fee_msat: number; preimage: string }> {
export async function payInvoiceWithWallet(paymentRequest: string, _walletId: string, adminKey: string): Promise<{ payment_hash: string; fee_msat: number; preimage: string }> {
try {
const response = await fetch(
`${API_BASE_URL}/api/v1/payments`,