This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .modal-container, .collapsed-container { | |
| --primary-color: #212121; | |
| --text-color: #010101; | |
| } | |
| /** Updating color for the links */ | |
| a { | |
| color: var(--primary-color); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { dehydrate } from '@tanstack/react-query' | |
| import { GetServerSideProps } from 'next' | |
| import { | |
| errorPageProps, | |
| NotFoundError, | |
| serverPageProps, | |
| } from '@/utils/setPageProps' | |
| import OrderDetailContainer from '@/containers/OrderDetails/OrderDetailContainer' | |
| import configureStore from '@/store' | |
| import { RouteName } from '@shared/constants/routes' |