-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
テストデプロイ時に出たエラー #310
テストデプロイ時に出たエラー #310
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
codegenしたら差分出てきたんですが正常ですか?エラーもたくさん
あと、view-userのNumberCardLarge.tsxですが、オプショナルチェーン (?.)のつけ忘れ見つけました。番号がない状態でエラーになります。
import React from "react";
import styles from "./NumberCardLarge.module.css";
import { SubscribeListNumbersSubscription } from "@/type/graphql";
interface NumberCardLargeProps {
bingoNumber?: SubscribeListNumbersSubscription["numbers"][number];
}
const NumberCardLarge = (props: NumberCardLargeProps) => {
return (
<div className={styles.container}>
<div className={styles.number}>{props.bingoNumber?.number}</div>
</div>
);
};
export default NumberCardLarge;
左の画像はnameをユニークにしてたからマージの時に消えてた。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
対応Issue
概要
実装詳細
画面スクリーンショット等
テスト項目
備考