@@ -165,7 +165,7 @@ export const ShareRedeem: React.FC = () => {
165
165
onClick : ( ) => void ;
166
166
} ) => {
167
167
return (
168
- < DialogTrigger disableButtonEnhancement action = "open" >
168
+ < DialogTrigger disableButtonEnhancement action = "open" key = { options . label } >
169
169
< Button
170
170
style = { { width : 'max-content' } }
171
171
appearance = { options ?. appearance ?? 'primary' }
@@ -255,11 +255,11 @@ export const ShareRedeem: React.FC = () => {
255
255
return renderAppView ( {
256
256
dialogTitle : 'Share is no longer redeemable' ,
257
257
dialogContent : (
258
- < p >
258
+ < div >
259
259
The share has already been redeemed or has expired.
260
260
{ shareDetails }
261
261
If you believe this is an error, please contact the person who shared the conversation with you.
262
- </ p >
262
+ </ div >
263
263
) ,
264
264
} ) ;
265
265
@@ -269,13 +269,13 @@ export const ShareRedeem: React.FC = () => {
269
269
dialogTitle : inviteTitle ,
270
270
dialogContent : (
271
271
< >
272
- < p >
272
+ < div >
273
273
You have been < em > invited to participate</ em > in a conversation: By joining, you will be
274
274
able to view and participate in the conversation.
275
275
{ shareDetails }
276
- </ p >
277
- < p > { existingCopyNote } </ p >
278
- < p > { copyNote } </ p >
276
+ </ div >
277
+ < div > { existingCopyNote } </ div >
278
+ < div > { copyNote } </ div >
279
279
</ >
280
280
) ,
281
281
dialogActions : [
@@ -297,13 +297,13 @@ export const ShareRedeem: React.FC = () => {
297
297
dialogTitle : inviteTitle ,
298
298
dialogContent : (
299
299
< >
300
- < p >
300
+ < div >
301
301
You have been < em > invited to observe</ em > a conversation: By observing, you will be able to
302
302
view the conversation without participating.
303
303
{ shareDetails }
304
- </ p >
305
- < p > { existingCopyNote } </ p >
306
- < p > { copyNote } </ p >
304
+ </ div >
305
+ < div > { existingCopyNote } </ div >
306
+ < div > { copyNote } </ div >
307
307
</ >
308
308
) ,
309
309
dialogActions : [
@@ -325,12 +325,12 @@ export const ShareRedeem: React.FC = () => {
325
325
dialogTitle : inviteTitle ,
326
326
dialogContent : (
327
327
< >
328
- < p >
328
+ < div >
329
329
You have been < em > invited to copy</ em > a conversation:
330
330
{ shareDetails }
331
- </ p >
332
- < p > { existingCopyNote } </ p >
333
- < p > { copyNote } </ p >
331
+ </ div >
332
+ < div > { existingCopyNote } </ div >
333
+ < div > { copyNote } </ div >
334
334
</ >
335
335
) ,
336
336
dialogActions : [
0 commit comments