diff --git a/src/stories/components/UpdateText.stories.tsx b/src/stories/components/UpdateText.stories.tsx deleted file mode 100644 index 66a8d748..00000000 --- a/src/stories/components/UpdateText.stories.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/react'; -import type { UpdateTextProps } from '@views/components/common/UpdateText'; -import UpdateText from '@views/components/common/UpdateText'; -import React from 'react'; - -const meta = { - title: 'Components/Common/UpdateText', - component: UpdateText, - parameters: { - layout: 'centered', - }, - tags: ['autodocs'], - argTypes: { - courses: { control: 'object' }, - }, -} satisfies Meta; - -export default meta; - -type Story = StoryObj; - -const Template = (args: React.JSX.IntrinsicAttributes & UpdateTextProps) => ; - -export const Default: Story = { - render: Template, - args: { - courses: ['12345', '23456', '34567', '45678', '56789'], - }, -}; -Default.args = { - courses: ['12345', '23456', '34567', '45678', '56789'], -}; diff --git a/src/views/components/common/MigrationDialog.tsx b/src/views/components/common/MigrationDialog.tsx index 84191995..1c0cf75c 100644 --- a/src/views/components/common/MigrationDialog.tsx +++ b/src/views/components/common/MigrationDialog.tsx @@ -102,7 +102,7 @@ export function useMigrationDialog() { { title: 'This extension has updated!', description: - "You may have already began planning your Spring '25 schedule. Click the button below to transfer your saved schedules into a new schedule. (You may be required to login to the UT Registrar)", + "You may have already began planning your Fall '25 schedule. Click the button below to transfer your saved schedules into a new schedule. (You may be required to login to the UT Registrar)", buttons: close => , }, diff --git a/src/views/components/common/UpdateText.tsx b/src/views/components/common/UpdateText.tsx deleted file mode 100644 index d038588e..00000000 --- a/src/views/components/common/UpdateText.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import Text from '@views/components/common/Text/Text'; -import React from 'react'; - -/** - * Props for the Update Text - */ -export type UpdateTextProps = { - courses: string[]; -}; - -/** - * UpdateText component displays a message indicating that the extension has been updated - * and lists the unique course numbers from the old version. - * - * @param courses - An array of course unique numbers to be displayed. - * @returns The rendered UpdateText component. - */ -export default function UpdateText({ courses }: UpdateTextProps): JSX.Element { - return ( -
-
- - This extension has updated! - - - You may have already began planning your Spring 2025 schedule. Here are the Unique Numbers you had - from the old version: (Please open each link and re-add course to your new schedule) - -
-
- {courses.map(course => ( - - {course} - - ))} -
-
- ); -}