diff --git a/frontend/src/routes/sponsor/guest/guestInfo/index.tsx b/frontend/src/routes/sponsor/guest/guestInfo/index.tsx
index c691d1145ed4ce6d481d84e314b9927538fa1f97..523ad9e694f1f4e4fa757652bb0c54c33ac3635c 100644
--- a/frontend/src/routes/sponsor/guest/guestInfo/index.tsx
+++ b/frontend/src/routes/sponsor/guest/guestInfo/index.tsx
@@ -368,19 +368,18 @@ export default function GuestInfo({
               <RoleLine key={role.id} pid={pid} role={role} />
             ))}
             <TableRow>
-              <TableCell align="left">
-                <Button
-                  variant="contained"
-                  color="secondary"
-                  component={Link}
-                  to={`/sponsor/guest/${pid}/newrole`}
-                >
-                  {t('sponsor.addRole')}
-                </Button>
-              </TableCell>
+              <TableCell align="left"></TableCell>
             </TableRow>
           </TableBody>
         </Table>
+        <Button
+          variant="contained"
+          color="secondary"
+          component={Link}
+          to={`/sponsor/guest/${pid}/newrole`}
+        >
+          {t('sponsor.addRole')}
+        </Button>
       </TableContainer>
     </Page>
   )