Crosspost errors are warnings now (#1285)

This commit is contained in:
ekzyis 2024-08-05 18:05:09 -05:00 committed by GitHub
parent 288fa37197
commit f7a170fff0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ export default function useCrossposter () {
removeToast() removeToast()
} }
const removeToast = toaster.danger( const removeToast = toaster.warning(
<> <>
Crossposting failed for {failedRelays.join(', ')} <br /> Crossposting failed for {failedRelays.join(', ')} <br />
<Button <Button
@ -145,7 +145,7 @@ export default function useCrossposter () {
} }
const crosspostError = (errorMessage) => { const crosspostError = (errorMessage) => {
return toaster.danger(`Error crossposting: ${errorMessage}`) return toaster.warning(`crossposting failed: ${errorMessage}`)
} }
async function handleEventCreation (item) { async function handleEventCreation (item) {