* Embed SSG and consistently pass embedType query param across pages * Embed fixes * Code cleanup * Add main class which tells embed which helps in identifying which area is outside the main content * remove any special optimization handling for routing forms * Add comments * Small fixes * Fix broken team booking page in embed * Fix Fallback message dark theme * TS Fixes * Fixes * Fix tests * Remove not required code Co-authored-by: Peer Richelsen <peeroke@gmail.com>
8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
import withEmbedSsr from "@lib/withEmbedSsr";
|
|
|
|
import { getServerSideProps as _getServerSideProps } from "../[user]";
|
|
|
|
export { default } from "../[user]";
|
|
|
|
export const getServerSideProps = withEmbedSsr(_getServerSideProps);
|