diff --git a/src/views/components/injected/CourseCatalogInjectedPopup/Description.tsx b/src/views/components/injected/CourseCatalogInjectedPopup/Description.tsx
index a385230d7..eccf5cdf8 100644
--- a/src/views/components/injected/CourseCatalogInjectedPopup/Description.tsx
+++ b/src/views/components/injected/CourseCatalogInjectedPopup/Description.tsx
@@ -5,6 +5,7 @@ import { CourseCatalogScraper } from '@views/lib/CourseCatalogScraper';
import { SiteSupport } from '@views/lib/getSiteSupport';
import clsx from 'clsx';
import React from 'react';
+import Skeleton from 'react-loading-skeleton';
interface DescriptionProps {
course: Course;
@@ -60,8 +61,8 @@ export default function Description({ course }: DescriptionProps): JSX.Element {
Please refresh the page and log back in using your UT EID and password.
)}
- {/* TODO (achadaga): would be nice to have a new spinner here */}
- {status === LoadStatus.LOADING && }
+ {status === LoadStatus.LOADING &&
+ Array.from({ length: 5 }).map((_, i) => )}
{status === LoadStatus.DONE && (
{description.map(line => {
diff --git a/src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx b/src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx
index aa9121969..273910900 100644
--- a/src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx
+++ b/src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx
@@ -12,6 +12,7 @@ import Highcharts from 'highcharts';
import HighchartsReact from 'highcharts-react-official';
import type { ChangeEvent } from 'react';
import React, { useEffect, useMemo, useRef, useState } from 'react';
+import Skeleton from 'react-loading-skeleton';
interface GradeDistributionProps {
course: Course;
@@ -193,8 +194,7 @@ export default function GradeDistribution({ course }: GradeDistributionProps): J
return (
- {/* TODO (achadaga): again would be nice to have an updated spinner */}
- {status === DataStatus.LOADING && }
+ {status === DataStatus.LOADING && }
{status === DataStatus.NOT_FOUND && (