An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: make help desk/feedback URLs link to catsky repo instead (#53)

Similar to the patch from deer social but for catsky instead

authored by

dish and committed by
GitHub
06121f78 47e67d9b

+4 -15
+4 -15
src/lib/constants.ts
··· 11 11 export const BSKY_SERVICE_DID = 'did:web:bsky.social' 12 12 export const PUBLIC_BSKY_SERVICE = 'https://public.api.bsky.app' 13 13 export const DEFAULT_SERVICE = BSKY_SERVICE 14 - const HELP_DESK_LANG = 'en-us' 15 - export const HELP_DESK_URL = `https://blueskyweb.zendesk.com/hc/${HELP_DESK_LANG}` 14 + export const HELP_DESK_URL = `https://github.com/NekoDrone/catsky-social/issues/new/choose` 16 15 export const EMBED_SERVICE = 'https://embed.bsky.app' 17 16 export const EMBED_SCRIPT = `${EMBED_SERVICE}/static/embed.js` 18 17 export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download' ··· 38 37 'did:plc:2dzyut5lxna5ljiaasgeuffz': true, // darrin.bsky.team 39 38 } 40 39 41 - const BASE_FEEDBACK_FORM_URL = `${HELP_DESK_URL}/requests/new` 42 - export function FEEDBACK_FORM_URL({ 43 - email, 44 - handle, 45 - }: { 40 + const BASE_FEEDBACK_FORM_URL = `${HELP_DESK_URL}` 41 + export function FEEDBACK_FORM_URL(_params: { 46 42 email?: string 47 43 handle?: string 48 44 }): string { 49 - let str = BASE_FEEDBACK_FORM_URL 50 - if (email) { 51 - str += `?tf_anonymous_requester_email=${encodeURIComponent(email)}` 52 - if (handle) { 53 - str += `&tf_17205412673421=${encodeURIComponent(handle)}` 54 - } 55 - } 56 - return str 45 + return BASE_FEEDBACK_FORM_URL 57 46 } 58 47 59 48 export const MAX_DISPLAY_NAME = 64