mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-04 17:11:42 -05:00
aa480a2663
[web] migrate from window attributes to getMeta GitOrigin-RevId: 3dcf1ab6b01155e5e4abeb3e78d0fa9053e055bc
21 lines
542 B
TypeScript
21 lines
542 B
TypeScript
import { useSubscriptionDashboardContext } from '../../context/subscription-dashboard-context'
|
|
import ManagedInstitution from './managed-institution'
|
|
|
|
export default function ManagedInstitutions() {
|
|
const { managedInstitutions } = useSubscriptionDashboardContext()
|
|
|
|
if (!managedInstitutions) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{managedInstitutions.map(institution => (
|
|
<ManagedInstitution
|
|
institution={institution}
|
|
key={`managed-institution-${institution.v1Id}`}
|
|
/>
|
|
))}
|
|
</>
|
|
)
|
|
}
|