### Description ``` <script> let { data } = $props(); // {myProp?: string} if (!data.myProp) { throw error(404, "nope");} </script> {#if data.myProp === "foo"} // data.myProp is possibly 'undefined' {/if} ``` ### Proposed solution I'm not sure ### Alternatives `!.` or non null checks. ### Additional Information, eg. Screenshots _No response_