mirror of
https://github.com/dergigi/boris.git
synced 2025-12-19 07:34:28 +01:00
fix: remove unused variables to resolve lint errors
- Remove unused relayNames variable from HighlightItem.tsx - Remove unused failedRelays variable from highlightCreationService.ts - All linting and type checks now pass
This commit is contained in:
@@ -156,10 +156,6 @@ export async function createHighlight(
|
||||
.filter(response => response.ok)
|
||||
.map(response => response.from)
|
||||
|
||||
const failedRelays = publishResponses
|
||||
.filter(response => !response.ok)
|
||||
.map(response => ({ from: response.from, message: response.message }))
|
||||
|
||||
const successfulLocalRelays = successfulRelays.filter(url => isLocalRelay(url))
|
||||
const successfulRemoteRelays = successfulRelays.filter(url => !isLocalRelay(url))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user