Skip to content

Commit

Permalink
Adding label 'error' on github issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sim51 committed Jan 31, 2024
1 parent ec65ed6 commit d84c847
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Error.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import cx from "classnames";
import { FC } from "react";
import { FallbackProps } from "react-error-boundary";
import { useTranslation } from "react-i18next";
import { TbFaceIdError } from "react-icons/tb";
import cx from "classnames";

import { GitHubIcon } from "./common-icons";

Expand All @@ -22,7 +22,7 @@ ${error.message}
${error.stack}
\`\`\``;
}
return `https://github.com/gephi/gephi-lite/issues/new?labels=prod&body=${encodeURIComponent(body)}`;
return `https://github.com/gephi/gephi-lite/issues/new?labels=bug,prod&body=${encodeURIComponent(body)}`;
}

export const ErrorComponent: FC<FallbackProps> = ({ error }) => {
Expand Down

0 comments on commit d84c847

Please sign in to comment.