useNote
Returns the proposed `note` applied to the checkout.
UseNoteGeneratedType
Returns the proposed `note` applied to the checkout.
Returns: string | undefined
export function useNote<
ID extends RenderExtensionPoint = RenderExtensionPoint,
>(): string | undefined {
return useSubscription(useApi<ID>().note);
}
Related