diff --git a/apps/web/src/components/ReportToast.test.tsx b/apps/web/src/components/ReportToast.test.tsx
index 0722bc7..ec1fbf4 100644
--- a/apps/web/src/components/ReportToast.test.tsx
+++ b/apps/web/src/components/ReportToast.test.tsx
@@ -43,7 +43,7 @@ describe('ReportToast', () => {
it('offers a connection-problem report after the chooser is dismissed, until dismissed', () => {
const { container } = render();
- const link = screen.getByRole('link', { name: /tell us which one/i });
+ const link = screen.getByRole('link', { name: /let us know/i });
expect(link.getAttribute('href')).toContain('template=connection-problem.yml');
fireEvent.click(screen.getByRole('button', { name: /dismiss/i }));
expect(container.firstChild).toBeNull();
@@ -59,8 +59,8 @@ describe('ReportToast', () => {
});
const live = [channel({ state: 'live', driverId: 'ut181a', deviceName: 'UT181A' })];
const { container, unmount } = render();
- expect(screen.getByText(/not yet confirmed on real hardware/i)).toBeInTheDocument();
- fireEvent.click(screen.getByRole('button', { name: /report it/i }));
+ expect(screen.getByText(/how is your meter working for you/i)).toBeInTheDocument();
+ fireEvent.click(screen.getByRole('button', { name: /let us know/i }));
await waitFor(() => expect(open).toHaveBeenCalled());
expect(open.mock.calls[0]![0]).toContain('template=device-report.yml');
await waitFor(() => expect(container.firstChild).toBeNull());
diff --git a/apps/web/src/components/ReportToast.tsx b/apps/web/src/components/ReportToast.tsx
index c790217..7ed2f0f 100644
--- a/apps/web/src/components/ReportToast.tsx
+++ b/apps/web/src/components/ReportToast.tsx
@@ -1,12 +1,12 @@
// A dismissible, non-blocking toast inviting a device report (see lib/report.ts). Two cases:
-// * a real meter is live on a driver not yet confirmed on hardware → "does it work?". Dismissing
+// * a real meter is live on a driver not yet confirmed on hardware → "how is it working?". Dismissing
// or reporting is remembered per driver, so it asks once.
-// * the chooser was dismissed or connecting failed → "not in the list, or won't connect?".
+// * the chooser was dismissed or connecting failed → "trouble finding or connecting?".
// Dismissing hides it until the next cancel/failure.
// Both open a pre-filled GitHub issue form in a new tab; the user reviews and submits it there.
import { useEffect, useState } from 'react';
-import type { MeterChannel, Meters } from '@libreble/multimeter-react';
+import type { Meters } from '@libreble/multimeter-react';
import { connectionProblemUrl, deviceReportUrl, verification } from '../lib/report';
const DONE_KEY = (driverId: string) => `multimeter.reportDone.${driverId}`;
@@ -36,7 +36,7 @@ export function ReportToast({ meters }: { meters: Meters }) {
c =>
c.state === 'live' &&
c.driverId !== null &&
- verification(c.driverId)?.tier !== 'live-tested' &&
+ verification(c.driverId) !== 'live-tested' &&
!done.has(c.driverId) &&
!isDone(c.driverId),
);
@@ -63,12 +63,9 @@ export function ReportToast({ meters }: { meters: Meters }) {
};
return (
-
- {name(unconfirmed)} is{' '}
- {verification(driverId)?.text}. Does it read right?
-