Add stories for timeline notifications with long names
This commit is contained in:
parent
5bf3720d1d
commit
ddc591e962
5 changed files with 86 additions and 1 deletions
|
@ -54,3 +54,14 @@ stories.add('Direct Conversation', () => {
|
|||
|
||||
return <SafetyNumberNotification {...props} />;
|
||||
});
|
||||
|
||||
stories.add('Long name in group', () => {
|
||||
const props = createProps({
|
||||
isGroup: true,
|
||||
contact: createContact({
|
||||
title: '🐈⬛🍕🎂'.repeat(50),
|
||||
}),
|
||||
});
|
||||
|
||||
return <SafetyNumberNotification {...props} />;
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue