antiwork/gumroad · error · ResponseError

Something went wrong.

Error message

Something went wrong.

What it means

Error "Something went wrong." thrown in antiwork/gumroad.

Source

Thrown at app/javascript/data/affiliates.ts:53

  email: string;
  promotion: string;
  date: string;
  state: "created" | "approved" | "ignored";
};

export type AffiliateStatistics = {
  total_volume_cents: number;
  products: Record<number, { volume_cents: number; sales_count: number }>;
};

export const getStatistics = (id: string) =>
  request({
    method: "GET",
    accept: "json",
    url: Routes.statistics_affiliate_path(id),
  })
    .then((res) => {
      if (!res.ok) throw new ResponseError();
      return res.json();
    })
    .then((json) => typia.assert<AffiliateStatistics>(json));

View on GitHub (pinned to afeacbd394)

When it happens

Trigger: Thrown at app/javascript/data/affiliates.ts:53 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of antiwork/gumroad@afeacbd394 (2026-08-21). Data as JSON: /api/errors/66a771d568e8b0ed. Report an issue: GitHub.