@@ -85,10 +85,8 @@ function OfferConfirmDrawer({ children, onSubmit, ...drawerProps }: OfferConfirm
8585 return (
8686 < ConfirmDrawer { ...drawerProps } onSubmit = { onSubmit } submitButtonText = "Yes, offer quote." >
8787 < >
88- < div className = "px-4 py-12" >
89- < div className = "flex items-center justify-center space-x-2" >
90- Are you sure you want to < span className = "ps-1 font-bold" > offer the quote</ span > ?
91- </ div >
88+ < div className = "py-12 text-xl" >
89+ Are you sure you want to < span className = "ps-1 font-bold" > offer the quote</ span > ?
9290 </ div >
9391 < > { children } </ >
9492 </ >
@@ -110,10 +108,8 @@ function DenyConfirmDrawer({ children, onSubmit, ...drawerProps }: DenyConfirmDr
110108 submitButtonVariant = "destructive"
111109 onSubmit = { onSubmit }
112110 >
113- < div className = "px-4 py-12" >
114- < div className = "flex items-center justify-center space-x-2" >
115- Are you sure you want to < span className = "ps-1 font-bold" > deny the quote</ span > ?
116- </ div >
111+ < div className = "py-12 text-xl" >
112+ Are you sure you want to < span className = "ps-1 font-bold" > deny offering a quote</ span > ?
117113 </ div >
118114 </ ConfirmDrawer >
119115 )
@@ -204,6 +200,7 @@ function QuoteActions({ value, isFetching }: { value: InfoReply; isFetching: boo
204200 < >
205201 < div className = "flex items-center gap-2" >
206202 < DenyConfirmDrawer
203+ title = "Confirm denying quote"
207204 open = { denyConfirmDrawerOpen }
208205 onOpenChange = { setDenyConfirmDrawerOpen }
209206 onSubmit = { ( ) => {
@@ -220,6 +217,8 @@ function QuoteActions({ value, isFetching }: { value: InfoReply; isFetching: boo
220217 </ Button >
221218 </ DenyConfirmDrawer >
222219 < OfferFormDrawer
220+ title = "Offer quote"
221+ description = "Make an offer to the current holder of this bill"
223222 open = { offerFormDrawerOpen }
224223 onOpenChange = { setOfferFormDrawerOpen }
225224 onSubmit = { ( data ) => {
@@ -233,6 +232,8 @@ function QuoteActions({ value, isFetching }: { value: InfoReply; isFetching: boo
233232 </ Button >
234233 </ OfferFormDrawer >
235234 < OfferConfirmDrawer
235+ title = "Confirm offering quote"
236+ description = "Review your inputs and confirm the offer"
236237 open = { offerConfirmDrawerOpen }
237238 onOpenChange = { setOfferConfirmDrawerOpen }
238239 onSubmit = { ( ) => {
0 commit comments