createAsync() to get and order record.order has the following type:const order: Accessor<Order | undefined>order could be undefined, I must check for that in my jsx. <Show when={order()}>when={order()} would return false if order() was undefined, and satisfy typescript, but typescript is still complaining with this message:order to a component like this:<OrderTable order={order} />