[
  {
    "id": "D001",
    "title": "Checkout overlay intercepts taps",
    "text": "On mobile Safari, the checkout Continue control is visible but cannot be pressed. An invisible consent backdrop remains above it with pointer-events auto. Removing the orphan backdrop restores taps."
  },
  {
    "id": "D002",
    "title": "Login cookie rejected in iframe",
    "text": "Embedded login repeatedly returns to sign-in on Chrome. The session cookie is SameSite=Lax and excluded from cross-site iframe requests. SameSite=None with Secure resolves the loop."
  },
  {
    "id": "D003",
    "title": "Stale deployment served offline",
    "text": "After release, the dashboard still shows the old navigation. A service worker cache-first route serves obsolete app.js. Versioning the cache and activating the updated worker fixes it."
  },
  {
    "id": "D004",
    "title": "Invoice download CORS failure",
    "text": "Invoice PDF download fails in Firefox. The cross-origin response omits Access-Control-Allow-Origin; the browser blocks access despite HTTP 200. Adding the allowed application origin fixes downloads."
  },
  {
    "id": "D005",
    "title": "Search response race",
    "text": "Typing rapidly into product search briefly shows the correct results then older ones. A slow prior fetch overwrites the newest response. Abort the previous request or reject stale request IDs."
  },
  {
    "id": "D006",
    "title": "Virtual list keyboard focus lost",
    "text": "Using Tab in the virtualized contact list jumps to the document body after scrolling. The focused row unmounts. Keep an active item mounted and restore focus by stable record ID."
  },
  {
    "id": "D007",
    "title": "CSV export exhausts heap",
    "text": "Exporting 90,000 audit rows freezes Chrome and crashes the tab. Building a single base64 data URL doubles retained memory. Stream the CSV into a Blob instead."
  },
  {
    "id": "D008",
    "title": "Payment button sends twice",
    "text": "Double-clicking Pay creates two charge requests. The button stays enabled while awaiting the first response. Disable it during submission and use a server-side idempotency key."
  },
  {
    "id": "D009",
    "title": "Profile avatar rotated",
    "text": "An uploaded portrait is sideways on iOS Safari. Image processing strips the EXIF orientation without rotating pixels. Normalize orientation before removing metadata."
  },
  {
    "id": "D010",
    "title": "Date filter shifts backward",
    "text": "A report filtered for March 8 includes March 7 in New York. A date-only value is parsed as UTC midnight then formatted locally. Preserve the calendar date rather than converting an instant."
  },
  {
    "id": "D011",
    "title": "Tooltip inaccessible to screen reader",
    "text": "The revenue chart explains units only on mouse hover. NVDA receives no accessible description and keyboard focus cannot trigger the tooltip. Add aria-describedby and focus activation."
  },
  {
    "id": "D012",
    "title": "Websocket reconnect loses subscription",
    "text": "The activity feed stops updating after a laptop wakes. The socket reconnects but topic subscriptions are not re-sent. Subscribe again after each successful connection."
  },
  {
    "id": "D013",
    "title": "Modal body scroll remains locked",
    "text": "Closing the settings modal leaves the page unable to scroll. An early return skips cleanup of body overflow hidden. Always restore the previous overflow value on unmount."
  },
  {
    "id": "D014",
    "title": "Password reset token fragment missing",
    "text": "Password reset links fail only after the email security redirect. The redirect discards the URL fragment holding the reset token. Preserve the fragment or move the token into a validated query parameter."
  },
  {
    "id": "D015",
    "title": "Upload progress exceeds total",
    "text": "Uploading a file displays 140 percent although the file succeeds. Retried chunks increment the completed-byte counter twice. Track acknowledged byte ranges instead of summing retry attempts."
  },
  {
    "id": "D016",
    "title": "Currency sorting uses strings",
    "text": "The invoice table places $90 above $800 when sorting descending. Formatted currency labels are compared lexicographically. Sort numeric minor-unit values before formatting."
  },
  {
    "id": "D017",
    "title": "Atlas reproduction log",
    "text": "Atlas release 4.2 on Firefox: clicking Save in the team editor produces no confirmation. Network evidence shows a 409 conflict on PATCH /teams because the revision is stale."
  },
  {
    "id": "D018",
    "title": "Atlas resolution log",
    "text": "Atlas team editor stale revision conflict was fixed by refreshing the revision before resubmitting PATCH /teams. The patch shipped in release 4.3; QA verified the Save confirmation in Firefox."
  },
  {
    "id": "D019",
    "title": "Beacon reproduction log",
    "text": "Beacon release 7.0 on Safari: uploading a large video stops after 60 seconds. Network evidence shows the presigned object-storage upload URL expires while the transfer is in progress."
  },
  {
    "id": "D020",
    "title": "Beacon resolution log",
    "text": "Beacon large video upload expiry was fixed by issuing a longer-lived presigned URL. The correction shipped in release 7.1; QA verified a five-minute Safari transfer."
  },
  {
    "id": "D021",
    "title": "Checkout Continue analytics warning",
    "text": "Mobile Safari checkout Continue emits an analytics warning. The button accepts taps and checkout succeeds. No overlay or blocked pointer events were observed; the analytics warning is cosmetic."
  },
  {
    "id": "D022",
    "title": "Login loop caused by wrong password",
    "text": "Standalone Chrome login returns to sign-in after a rejected password. Session cookie settings and cross-site iframes are not involved. Correct credentials resolve this case."
  },
  {
    "id": "D023",
    "title": "Invoice PDF server unavailable",
    "text": "Invoice PDF download returns HTTP 503 across browsers. The storage service is down, and CORS headers are correct. Restore storage availability."
  },
  {
    "id": "D024",
    "title": "Search results intentionally archived",
    "text": "Product search includes archived items when Include archived is enabled. This is expected behavior, not an older response overwriting a newer one."
  },
  {
    "id": "D025",
    "title": "Checkout cosmetic check: French locale",
    "text": "Synthetic visual review of checkout under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D026",
    "title": "Login cosmetic check: French locale",
    "text": "Synthetic visual review of login under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D027",
    "title": "Invoice cosmetic check: French locale",
    "text": "Synthetic visual review of invoice under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D028",
    "title": "Search cosmetic check: French locale",
    "text": "Synthetic visual review of search under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D029",
    "title": "Contacts cosmetic check: French locale",
    "text": "Synthetic visual review of contacts under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D030",
    "title": "Audit Export cosmetic check: French locale",
    "text": "Synthetic visual review of audit export under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D031",
    "title": "Avatar cosmetic check: French locale",
    "text": "Synthetic visual review of avatar under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D032",
    "title": "Date Filter cosmetic check: French locale",
    "text": "Synthetic visual review of date filter under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D033",
    "title": "Chart cosmetic check: French locale",
    "text": "Synthetic visual review of chart under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D034",
    "title": "Activity Feed cosmetic check: French locale",
    "text": "Synthetic visual review of activity feed under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D035",
    "title": "Settings cosmetic check: French locale",
    "text": "Synthetic visual review of settings under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D036",
    "title": "Password Reset cosmetic check: French locale",
    "text": "Synthetic visual review of password reset under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D037",
    "title": "File Upload cosmetic check: French locale",
    "text": "Synthetic visual review of file upload under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D038",
    "title": "Currency Table cosmetic check: French locale",
    "text": "Synthetic visual review of currency table under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D039",
    "title": "Team Editor cosmetic check: French locale",
    "text": "Synthetic visual review of team editor under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D040",
    "title": "Video Upload cosmetic check: French locale",
    "text": "Synthetic visual review of video upload under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D041",
    "title": "Navigation cosmetic check: French locale",
    "text": "Synthetic visual review of navigation under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D042",
    "title": "Consent Banner cosmetic check: French locale",
    "text": "Synthetic visual review of consent banner under French locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D043",
    "title": "Checkout cosmetic check: dark theme",
    "text": "Synthetic visual review of checkout under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D044",
    "title": "Login cosmetic check: dark theme",
    "text": "Synthetic visual review of login under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D045",
    "title": "Invoice cosmetic check: dark theme",
    "text": "Synthetic visual review of invoice under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D046",
    "title": "Search cosmetic check: dark theme",
    "text": "Synthetic visual review of search under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D047",
    "title": "Contacts cosmetic check: dark theme",
    "text": "Synthetic visual review of contacts under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D048",
    "title": "Audit Export cosmetic check: dark theme",
    "text": "Synthetic visual review of audit export under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D049",
    "title": "Avatar cosmetic check: dark theme",
    "text": "Synthetic visual review of avatar under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D050",
    "title": "Date Filter cosmetic check: dark theme",
    "text": "Synthetic visual review of date filter under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D051",
    "title": "Chart cosmetic check: dark theme",
    "text": "Synthetic visual review of chart under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D052",
    "title": "Activity Feed cosmetic check: dark theme",
    "text": "Synthetic visual review of activity feed under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D053",
    "title": "Settings cosmetic check: dark theme",
    "text": "Synthetic visual review of settings under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D054",
    "title": "Password Reset cosmetic check: dark theme",
    "text": "Synthetic visual review of password reset under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D055",
    "title": "File Upload cosmetic check: dark theme",
    "text": "Synthetic visual review of file upload under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D056",
    "title": "Currency Table cosmetic check: dark theme",
    "text": "Synthetic visual review of currency table under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D057",
    "title": "Team Editor cosmetic check: dark theme",
    "text": "Synthetic visual review of team editor under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D058",
    "title": "Video Upload cosmetic check: dark theme",
    "text": "Synthetic visual review of video upload under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D059",
    "title": "Navigation cosmetic check: dark theme",
    "text": "Synthetic visual review of navigation under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D060",
    "title": "Consent Banner cosmetic check: dark theme",
    "text": "Synthetic visual review of consent banner under dark theme. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D061",
    "title": "Checkout cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of checkout under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D062",
    "title": "Login cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of login under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D063",
    "title": "Invoice cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of invoice under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D064",
    "title": "Search cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of search under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D065",
    "title": "Contacts cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of contacts under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D066",
    "title": "Audit Export cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of audit export under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D067",
    "title": "Avatar cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of avatar under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D068",
    "title": "Date Filter cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of date filter under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D069",
    "title": "Chart cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of chart under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D070",
    "title": "Activity Feed cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of activity feed under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D071",
    "title": "Settings cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of settings under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D072",
    "title": "Password Reset cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of password reset under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D073",
    "title": "File Upload cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of file upload under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D074",
    "title": "Currency Table cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of currency table under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D075",
    "title": "Team Editor cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of team editor under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D076",
    "title": "Video Upload cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of video upload under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D077",
    "title": "Navigation cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of navigation under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D078",
    "title": "Consent Banner cosmetic check: 125 percent zoom",
    "text": "Synthetic visual review of consent banner under 125 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D079",
    "title": "Checkout cosmetic check: landscape orientation",
    "text": "Synthetic visual review of checkout under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D080",
    "title": "Login cosmetic check: landscape orientation",
    "text": "Synthetic visual review of login under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D081",
    "title": "Invoice cosmetic check: landscape orientation",
    "text": "Synthetic visual review of invoice under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D082",
    "title": "Search cosmetic check: landscape orientation",
    "text": "Synthetic visual review of search under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D083",
    "title": "Contacts cosmetic check: landscape orientation",
    "text": "Synthetic visual review of contacts under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D084",
    "title": "Audit Export cosmetic check: landscape orientation",
    "text": "Synthetic visual review of audit export under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D085",
    "title": "Avatar cosmetic check: landscape orientation",
    "text": "Synthetic visual review of avatar under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D086",
    "title": "Date Filter cosmetic check: landscape orientation",
    "text": "Synthetic visual review of date filter under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D087",
    "title": "Chart cosmetic check: landscape orientation",
    "text": "Synthetic visual review of chart under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D088",
    "title": "Activity Feed cosmetic check: landscape orientation",
    "text": "Synthetic visual review of activity feed under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D089",
    "title": "Settings cosmetic check: landscape orientation",
    "text": "Synthetic visual review of settings under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D090",
    "title": "Password Reset cosmetic check: landscape orientation",
    "text": "Synthetic visual review of password reset under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D091",
    "title": "File Upload cosmetic check: landscape orientation",
    "text": "Synthetic visual review of file upload under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D092",
    "title": "Currency Table cosmetic check: landscape orientation",
    "text": "Synthetic visual review of currency table under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D093",
    "title": "Team Editor cosmetic check: landscape orientation",
    "text": "Synthetic visual review of team editor under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D094",
    "title": "Video Upload cosmetic check: landscape orientation",
    "text": "Synthetic visual review of video upload under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D095",
    "title": "Navigation cosmetic check: landscape orientation",
    "text": "Synthetic visual review of navigation under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D096",
    "title": "Consent Banner cosmetic check: landscape orientation",
    "text": "Synthetic visual review of consent banner under landscape orientation. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D097",
    "title": "Checkout cosmetic check: reduced motion",
    "text": "Synthetic visual review of checkout under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D098",
    "title": "Login cosmetic check: reduced motion",
    "text": "Synthetic visual review of login under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D099",
    "title": "Invoice cosmetic check: reduced motion",
    "text": "Synthetic visual review of invoice under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D100",
    "title": "Search cosmetic check: reduced motion",
    "text": "Synthetic visual review of search under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D101",
    "title": "Contacts cosmetic check: reduced motion",
    "text": "Synthetic visual review of contacts under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D102",
    "title": "Audit Export cosmetic check: reduced motion",
    "text": "Synthetic visual review of audit export under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D103",
    "title": "Avatar cosmetic check: reduced motion",
    "text": "Synthetic visual review of avatar under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D104",
    "title": "Date Filter cosmetic check: reduced motion",
    "text": "Synthetic visual review of date filter under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D105",
    "title": "Chart cosmetic check: reduced motion",
    "text": "Synthetic visual review of chart under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D106",
    "title": "Activity Feed cosmetic check: reduced motion",
    "text": "Synthetic visual review of activity feed under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D107",
    "title": "Settings cosmetic check: reduced motion",
    "text": "Synthetic visual review of settings under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D108",
    "title": "Password Reset cosmetic check: reduced motion",
    "text": "Synthetic visual review of password reset under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D109",
    "title": "File Upload cosmetic check: reduced motion",
    "text": "Synthetic visual review of file upload under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D110",
    "title": "Currency Table cosmetic check: reduced motion",
    "text": "Synthetic visual review of currency table under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D111",
    "title": "Team Editor cosmetic check: reduced motion",
    "text": "Synthetic visual review of team editor under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D112",
    "title": "Video Upload cosmetic check: reduced motion",
    "text": "Synthetic visual review of video upload under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D113",
    "title": "Navigation cosmetic check: reduced motion",
    "text": "Synthetic visual review of navigation under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D114",
    "title": "Consent Banner cosmetic check: reduced motion",
    "text": "Synthetic visual review of consent banner under reduced motion. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D115",
    "title": "Checkout cosmetic check: high contrast",
    "text": "Synthetic visual review of checkout under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D116",
    "title": "Login cosmetic check: high contrast",
    "text": "Synthetic visual review of login under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D117",
    "title": "Invoice cosmetic check: high contrast",
    "text": "Synthetic visual review of invoice under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D118",
    "title": "Search cosmetic check: high contrast",
    "text": "Synthetic visual review of search under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D119",
    "title": "Contacts cosmetic check: high contrast",
    "text": "Synthetic visual review of contacts under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D120",
    "title": "Audit Export cosmetic check: high contrast",
    "text": "Synthetic visual review of audit export under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D121",
    "title": "Avatar cosmetic check: high contrast",
    "text": "Synthetic visual review of avatar under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D122",
    "title": "Date Filter cosmetic check: high contrast",
    "text": "Synthetic visual review of date filter under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D123",
    "title": "Chart cosmetic check: high contrast",
    "text": "Synthetic visual review of chart under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D124",
    "title": "Activity Feed cosmetic check: high contrast",
    "text": "Synthetic visual review of activity feed under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D125",
    "title": "Settings cosmetic check: high contrast",
    "text": "Synthetic visual review of settings under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D126",
    "title": "Password Reset cosmetic check: high contrast",
    "text": "Synthetic visual review of password reset under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D127",
    "title": "File Upload cosmetic check: high contrast",
    "text": "Synthetic visual review of file upload under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D128",
    "title": "Currency Table cosmetic check: high contrast",
    "text": "Synthetic visual review of currency table under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D129",
    "title": "Team Editor cosmetic check: high contrast",
    "text": "Synthetic visual review of team editor under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D130",
    "title": "Video Upload cosmetic check: high contrast",
    "text": "Synthetic visual review of video upload under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D131",
    "title": "Navigation cosmetic check: high contrast",
    "text": "Synthetic visual review of navigation under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D132",
    "title": "Consent Banner cosmetic check: high contrast",
    "text": "Synthetic visual review of consent banner under high contrast. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D133",
    "title": "Checkout cosmetic check: private window",
    "text": "Synthetic visual review of checkout under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D134",
    "title": "Login cosmetic check: private window",
    "text": "Synthetic visual review of login under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D135",
    "title": "Invoice cosmetic check: private window",
    "text": "Synthetic visual review of invoice under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D136",
    "title": "Search cosmetic check: private window",
    "text": "Synthetic visual review of search under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D137",
    "title": "Contacts cosmetic check: private window",
    "text": "Synthetic visual review of contacts under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D138",
    "title": "Audit Export cosmetic check: private window",
    "text": "Synthetic visual review of audit export under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D139",
    "title": "Avatar cosmetic check: private window",
    "text": "Synthetic visual review of avatar under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D140",
    "title": "Date Filter cosmetic check: private window",
    "text": "Synthetic visual review of date filter under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D141",
    "title": "Chart cosmetic check: private window",
    "text": "Synthetic visual review of chart under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D142",
    "title": "Activity Feed cosmetic check: private window",
    "text": "Synthetic visual review of activity feed under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D143",
    "title": "Settings cosmetic check: private window",
    "text": "Synthetic visual review of settings under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D144",
    "title": "Password Reset cosmetic check: private window",
    "text": "Synthetic visual review of password reset under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D145",
    "title": "File Upload cosmetic check: private window",
    "text": "Synthetic visual review of file upload under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D146",
    "title": "Currency Table cosmetic check: private window",
    "text": "Synthetic visual review of currency table under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D147",
    "title": "Team Editor cosmetic check: private window",
    "text": "Synthetic visual review of team editor under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D148",
    "title": "Video Upload cosmetic check: private window",
    "text": "Synthetic visual review of video upload under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D149",
    "title": "Navigation cosmetic check: private window",
    "text": "Synthetic visual review of navigation under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D150",
    "title": "Consent Banner cosmetic check: private window",
    "text": "Synthetic visual review of consent banner under private window. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D151",
    "title": "Checkout cosmetic check: slow network",
    "text": "Synthetic visual review of checkout under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D152",
    "title": "Login cosmetic check: slow network",
    "text": "Synthetic visual review of login under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D153",
    "title": "Invoice cosmetic check: slow network",
    "text": "Synthetic visual review of invoice under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D154",
    "title": "Search cosmetic check: slow network",
    "text": "Synthetic visual review of search under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D155",
    "title": "Contacts cosmetic check: slow network",
    "text": "Synthetic visual review of contacts under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D156",
    "title": "Audit Export cosmetic check: slow network",
    "text": "Synthetic visual review of audit export under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D157",
    "title": "Avatar cosmetic check: slow network",
    "text": "Synthetic visual review of avatar under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D158",
    "title": "Date Filter cosmetic check: slow network",
    "text": "Synthetic visual review of date filter under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D159",
    "title": "Chart cosmetic check: slow network",
    "text": "Synthetic visual review of chart under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D160",
    "title": "Activity Feed cosmetic check: slow network",
    "text": "Synthetic visual review of activity feed under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D161",
    "title": "Settings cosmetic check: slow network",
    "text": "Synthetic visual review of settings under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D162",
    "title": "Password Reset cosmetic check: slow network",
    "text": "Synthetic visual review of password reset under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D163",
    "title": "File Upload cosmetic check: slow network",
    "text": "Synthetic visual review of file upload under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D164",
    "title": "Currency Table cosmetic check: slow network",
    "text": "Synthetic visual review of currency table under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D165",
    "title": "Team Editor cosmetic check: slow network",
    "text": "Synthetic visual review of team editor under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D166",
    "title": "Video Upload cosmetic check: slow network",
    "text": "Synthetic visual review of video upload under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D167",
    "title": "Navigation cosmetic check: slow network",
    "text": "Synthetic visual review of navigation under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D168",
    "title": "Consent Banner cosmetic check: slow network",
    "text": "Synthetic visual review of consent banner under slow network. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D169",
    "title": "Checkout cosmetic check: touch input",
    "text": "Synthetic visual review of checkout under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D170",
    "title": "Login cosmetic check: touch input",
    "text": "Synthetic visual review of login under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D171",
    "title": "Invoice cosmetic check: touch input",
    "text": "Synthetic visual review of invoice under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D172",
    "title": "Search cosmetic check: touch input",
    "text": "Synthetic visual review of search under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D173",
    "title": "Contacts cosmetic check: touch input",
    "text": "Synthetic visual review of contacts under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D174",
    "title": "Audit Export cosmetic check: touch input",
    "text": "Synthetic visual review of audit export under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D175",
    "title": "Avatar cosmetic check: touch input",
    "text": "Synthetic visual review of avatar under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D176",
    "title": "Date Filter cosmetic check: touch input",
    "text": "Synthetic visual review of date filter under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D177",
    "title": "Chart cosmetic check: touch input",
    "text": "Synthetic visual review of chart under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D178",
    "title": "Activity Feed cosmetic check: touch input",
    "text": "Synthetic visual review of activity feed under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D179",
    "title": "Settings cosmetic check: touch input",
    "text": "Synthetic visual review of settings under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D180",
    "title": "Password Reset cosmetic check: touch input",
    "text": "Synthetic visual review of password reset under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D181",
    "title": "File Upload cosmetic check: touch input",
    "text": "Synthetic visual review of file upload under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D182",
    "title": "Currency Table cosmetic check: touch input",
    "text": "Synthetic visual review of currency table under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D183",
    "title": "Team Editor cosmetic check: touch input",
    "text": "Synthetic visual review of team editor under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D184",
    "title": "Video Upload cosmetic check: touch input",
    "text": "Synthetic visual review of video upload under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D185",
    "title": "Navigation cosmetic check: touch input",
    "text": "Synthetic visual review of navigation under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D186",
    "title": "Consent Banner cosmetic check: touch input",
    "text": "Synthetic visual review of consent banner under touch input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D187",
    "title": "Checkout cosmetic check: keyboard input",
    "text": "Synthetic visual review of checkout under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D188",
    "title": "Login cosmetic check: keyboard input",
    "text": "Synthetic visual review of login under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D189",
    "title": "Invoice cosmetic check: keyboard input",
    "text": "Synthetic visual review of invoice under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D190",
    "title": "Search cosmetic check: keyboard input",
    "text": "Synthetic visual review of search under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D191",
    "title": "Contacts cosmetic check: keyboard input",
    "text": "Synthetic visual review of contacts under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D192",
    "title": "Audit Export cosmetic check: keyboard input",
    "text": "Synthetic visual review of audit export under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D193",
    "title": "Avatar cosmetic check: keyboard input",
    "text": "Synthetic visual review of avatar under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D194",
    "title": "Date Filter cosmetic check: keyboard input",
    "text": "Synthetic visual review of date filter under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D195",
    "title": "Chart cosmetic check: keyboard input",
    "text": "Synthetic visual review of chart under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D196",
    "title": "Activity Feed cosmetic check: keyboard input",
    "text": "Synthetic visual review of activity feed under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D197",
    "title": "Settings cosmetic check: keyboard input",
    "text": "Synthetic visual review of settings under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D198",
    "title": "Password Reset cosmetic check: keyboard input",
    "text": "Synthetic visual review of password reset under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D199",
    "title": "File Upload cosmetic check: keyboard input",
    "text": "Synthetic visual review of file upload under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D200",
    "title": "Currency Table cosmetic check: keyboard input",
    "text": "Synthetic visual review of currency table under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D201",
    "title": "Team Editor cosmetic check: keyboard input",
    "text": "Synthetic visual review of team editor under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D202",
    "title": "Video Upload cosmetic check: keyboard input",
    "text": "Synthetic visual review of video upload under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D203",
    "title": "Navigation cosmetic check: keyboard input",
    "text": "Synthetic visual review of navigation under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D204",
    "title": "Consent Banner cosmetic check: keyboard input",
    "text": "Synthetic visual review of consent banner under keyboard input. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D205",
    "title": "Checkout cosmetic check: German locale",
    "text": "Synthetic visual review of checkout under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D206",
    "title": "Login cosmetic check: German locale",
    "text": "Synthetic visual review of login under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D207",
    "title": "Invoice cosmetic check: German locale",
    "text": "Synthetic visual review of invoice under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D208",
    "title": "Search cosmetic check: German locale",
    "text": "Synthetic visual review of search under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D209",
    "title": "Contacts cosmetic check: German locale",
    "text": "Synthetic visual review of contacts under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D210",
    "title": "Audit Export cosmetic check: German locale",
    "text": "Synthetic visual review of audit export under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D211",
    "title": "Avatar cosmetic check: German locale",
    "text": "Synthetic visual review of avatar under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D212",
    "title": "Date Filter cosmetic check: German locale",
    "text": "Synthetic visual review of date filter under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D213",
    "title": "Chart cosmetic check: German locale",
    "text": "Synthetic visual review of chart under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D214",
    "title": "Activity Feed cosmetic check: German locale",
    "text": "Synthetic visual review of activity feed under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D215",
    "title": "Settings cosmetic check: German locale",
    "text": "Synthetic visual review of settings under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D216",
    "title": "Password Reset cosmetic check: German locale",
    "text": "Synthetic visual review of password reset under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D217",
    "title": "File Upload cosmetic check: German locale",
    "text": "Synthetic visual review of file upload under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D218",
    "title": "Currency Table cosmetic check: German locale",
    "text": "Synthetic visual review of currency table under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D219",
    "title": "Team Editor cosmetic check: German locale",
    "text": "Synthetic visual review of team editor under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D220",
    "title": "Video Upload cosmetic check: German locale",
    "text": "Synthetic visual review of video upload under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D221",
    "title": "Navigation cosmetic check: German locale",
    "text": "Synthetic visual review of navigation under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D222",
    "title": "Consent Banner cosmetic check: German locale",
    "text": "Synthetic visual review of consent banner under German locale. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D223",
    "title": "Checkout cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of checkout under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D224",
    "title": "Login cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of login under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D225",
    "title": "Invoice cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of invoice under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D226",
    "title": "Search cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of search under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D227",
    "title": "Contacts cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of contacts under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D228",
    "title": "Audit Export cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of audit export under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D229",
    "title": "Avatar cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of avatar under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D230",
    "title": "Date Filter cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of date filter under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D231",
    "title": "Chart cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of chart under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D232",
    "title": "Activity Feed cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of activity feed under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D233",
    "title": "Settings cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of settings under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D234",
    "title": "Password Reset cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of password reset under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D235",
    "title": "File Upload cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of file upload under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D236",
    "title": "Currency Table cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of currency table under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D237",
    "title": "Team Editor cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of team editor under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D238",
    "title": "Video Upload cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of video upload under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D239",
    "title": "Navigation cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of navigation under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  },
  {
    "id": "D240",
    "title": "Consent Banner cosmetic check: 200 percent zoom",
    "text": "Synthetic visual review of consent banner under 200 percent zoom. A border color differs from the design reference. Interaction, network requests, data correctness and accessibility checks pass. Adjust the border color token; no functional incident was reproduced."
  }
]