diff --git a/packages/front-end-interview-guidebook/contents/user-interface-questions-cheatsheet/en-US.mdx b/packages/front-end-interview-guidebook/contents/user-interface-questions-cheatsheet/en-US.mdx index 8c93ce341..39ff611a0 100644 --- a/packages/front-end-interview-guidebook/contents/user-interface-questions-cheatsheet/en-US.mdx +++ b/packages/front-end-interview-guidebook/contents/user-interface-questions-cheatsheet/en-US.mdx @@ -136,7 +136,7 @@ There's probably not enough time to handle all edge cases scenarios in your code - **Too many items in a list**: Showing too many items on a single page can lead to poor UX (user has to scroll a lot) and poor performance in terms of responsiveness and memory consumption. - **Pagination**: Break up a long list of items into multiple pages. - [**Virtual lists**](https://www.patterns.dev/posts/virtual-lists): Rendering only visible rows of content in a dynamic list instead of the entire list. - - Truncate the excess content and show an ellipsis. The `word-break` CSS property will come in handy useful. + - Truncate the excess content and show an ellipsis. The `word-break` CSS property will come in handy. - Limit the content to the first X characters/words and hide the excess content behind a "Show More" button. ## Performance