diff --git a/frontend/src/routes/sponsor/frontpage/index.tsx b/frontend/src/routes/sponsor/frontpage/index.tsx
index 4e987e5968038381306b3f5a7a28e8c4436d2a8b..e082f00cae69e394da441ba97e50ad56c9fd3f36 100644
--- a/frontend/src/routes/sponsor/frontpage/index.tsx
+++ b/frontend/src/routes/sponsor/frontpage/index.tsx
@@ -22,7 +22,7 @@ import { useTranslation, Trans } from 'react-i18next'
 import { Link } from 'react-router-dom'
 import { Guest, Role } from 'interfaces'
 import { isBefore } from 'date-fns'
-
+import { getRoleName, getRoleOuName } from 'utils'
 import SponsorGuestButtons from '../../components/sponsorGuestButtons'
 
 interface GuestProps {
@@ -118,7 +118,7 @@ const Status = ({ status }: StatusProps) => {
 }
 
 const PersonLine = ({ person, role }: PersonLineProps) => {
-  const [t, i18n] = useTranslation(['common'])
+  const [t] = useTranslation(['common'])
   const today = new Date()
   today.setHours(0, 0, 0, 0)
   let status = ''
@@ -140,13 +140,9 @@ const PersonLine = ({ person, role }: PersonLineProps) => {
       <TableCell component="th" scope="row">
         {`${person.first} ${person.last}`}
       </TableCell>
-      <TableCell align="left">
-        {i18n.language === 'en' ? role.name_en : role.name_nb}
-      </TableCell>
+      <TableCell align="left">{getRoleName(role)}</TableCell>
       <Status status={status} />
-      <TableCell align="left">
-        {i18n.language === 'en' ? role.ou_en : role.ou_nb}
-      </TableCell>
+      <TableCell align="left">{getRoleOuName(role)}</TableCell>
       <TableCell align="left">
         <Button
           variant="contained"