Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3537 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3537 Rev 3691
Línea 22... Línea 22...
22
 
22
 
Línea 23... Línea 23...
23
  const { data: profile } = useFetch(`/profile/view/${uuid}`);
23
  const { data: profile } = useFetch(`/profile/view/${uuid}`);
24
 
24
 
25
  return (
25
  return (
26
    <Grid container spacing={1}>
26
    <Grid container spacing={1}>
27
      <Grid item xs md={8} spacing={1} direction='column'>
27
      <Grid item xs={12} md={8}>
28
        <Box sx={{ display: 'flex', flexDirection: 'column', gap: 1 }}>
28
        <Box sx={{ display: 'flex', flexDirection: 'column', gap: 1 }}>
29
          <ProfileCard
29
          <ProfileCard
30
            cover={profile.cover}
30
            cover={profile.cover}
Línea 64... Línea 64...
64
            uuid={uuid}
64
            uuid={uuid}
65
          />
65
          />
66
        </Box>
66
        </Box>
67
      </Grid>
67
      </Grid>
Línea 68... Línea 68...
68
 
68
 
69
      <Grid item xs md={4}>
69
      <Grid item xs={12} md={4}>
70
        {profile?.user_profile_id && (
70
        {profile?.user_profile_id && (
71
          <SuggestWidget
71
          <SuggestWidget
72
            url={`/helpers/people-viewed-profile/${profile?.user_profile_id}`}
72
            url={`/helpers/people-viewed-profile/${profile?.user_profile_id}`}
73
            title={labels.who_has_seen_this_profile}
73
            title={labels.who_has_seen_this_profile}