Add stories for timeline notifications with long names

This commit is contained in:
Evan Hahn 2021-09-02 16:23:27 -05:00 committed by GitHub
parent 5bf3720d1d
commit ddc591e962
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 86 additions and 1 deletions

View file

@ -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} />;
});