diff --git a/src/components/ActiveCarpools/ActiveCarpools.tsx b/src/components/ActiveCarpools/ActiveCarpools.tsx
index adb1854..e064c69 100644
--- a/src/components/ActiveCarpools/ActiveCarpools.tsx
+++ b/src/components/ActiveCarpools/ActiveCarpools.tsx
@@ -1,17 +1,15 @@
-import { useEffect } from 'react';
-import { useState } from 'react';
+import { useEffect, useState } from 'react';
import { getActiveCarpools } from '../api';
import { ICarpool } from '../types';
+import UILink from '../UI/UILink';
import UISecondaryBox from '../UI/UISecondaryBox';
-import UISecondaryHeader from '../UI/UISecondaryHeader';
function ActiveCarpoolListItem({ carpool }: { carpool: ICarpool }) {
return (
-