fix: snooze dropdown overflow (#1588)

This commit is contained in:
Aaryan Khandelwal 2023-07-20 14:49:30 +05:30 committed by GitHub
parent 780573dadd
commit 4aef8c2242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -261,7 +261,7 @@ export const NotificationPopover = () => {
{notifications ? ( {notifications ? (
notifications.length > 0 ? ( notifications.length > 0 ? (
<div className="divide-y divide-custom-border-100 overflow-y-auto"> <div className="divide-y divide-custom-border-100 overflow-y-auto h-full">
{notifications.map((notification) => ( {notifications.map((notification) => (
<NotificationCard <NotificationCard
key={notification.id} key={notification.id}