/** * Feedback client — thin wrapper over @bytelyst/feedback-client. * * Allows users to submit bug reports, feature requests, and praise * from within the ChronoMind web app. * * Privacy: sends userId + feedback text only. Screenshots are opt-in. */ import { createFeedbackClient } from '@bytelyst/feedback-client'; import { getAuthClient, getBaseUrl } from './auth-api'; const feedbackClient = createFeedbackClient({ baseUrl: `${getBaseUrl()}/api`, getAuthToken: () => getAuthClient().getAccessToken(), }); export { feedbackClient };