export const RowActions = () => {
  return null;

  // TODO: Once journey detail page is implemented, enable this again
  // const { t } = useLokaliseTranslation('time_off');
  // const options: MenuListProps['options'] = [
  //   {
  //     title: t('see_detail'),
  //     // TODO: Endpoint not implemented yet.
  //     // on the future this will be used to navigate to the journey detail page
  //     onClick: () => {},
  //     disabled: true,
  //   },
  // ];
  // return (
  //   <TableCell
  //     sx={{
  //       position: 'sticky',
  //       px: 1,
  //       right: 0,
  //       backgroundColor: ({ palette }) =>
  //         palette.hugoBackground?.neutralBgTerciary,
  //     }}
  //   >
  //     <CustomCellBorder sx={{ left: 0 }} />
  //     <MenuList
  //       position="right"
  //       options={options}
  //     />
  //   </TableCell>
  // );
};
