* fix: handled tapping on a notification in Notifications from mobile in inbox issue and issue peekoverview component * fix: code cleanup * fix: code cleanup on workspace notification store * fix: updated selected notification on workspace notification store
13 lines
428 B
TypeScript
13 lines
428 B
TypeScript
"use client";
|
|
|
|
// components
|
|
import { NotificationsSidebar } from "@/components/workspace-notifications";
|
|
|
|
export default function ProjectInboxIssuesLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="relative w-full h-full overflow-hidden flex items-center">
|
|
<NotificationsSidebar />
|
|
<div className="w-full h-full overflow-hidden overflow-y-auto">{children}</div>
|
|
</div>
|
|
);
|
|
}
|