shift table part to find email working on 26.04.2024

PHOTO EMBED

Fri Apr 26 2024 00:19:17 GMT+0000 (Coordinated Universal Time)

Saved by @rafal_rydz

  const navigateToFile = async (emailId: string) => {
    if (!emailId) return; // If no email ID is present, return
    const filename = await useGetFilename(emailId); // Fetch filename using the email ID
    if (filename) {
      router.push(`/secure/review/email?filename=${filename}`);
    }
  };
content_copyCOPY