Skip to content

Commit

Permalink
Fix issue with variable accessor
Browse files Browse the repository at this point in the history
  • Loading branch information
AmruthPillai committed Oct 15, 2022
1 parent 284a39a commit 3a7b98d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions client/components/build/Center/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ const Page: React.FC<Props> = ({ page, showPageNumbers = false }) => {
const TemplatePage: React.FC<PageProps> | null = useMemo(() => templateMap[template].component, [template]);

return (
<div data-page={page + 1} data-format={pageConfig.format || 'A4'} className={styles.container}>
<div className={styles.container} data-page={page + 1} data-format={pageConfig?.format || 'A4'}>
<div
className={clsx({
reset: true,
[styles.page]: true,
[styles.break]: breakLine,
[styles['format-letter']]: pageConfig?.format === 'Letter',
[css(themeCSS)]: true,
[css(typographyCSS)]: true,
[css(customCSS.value)]: customCSS.visible,
[styles['format-letter']]: pageConfig?.format === 'Letter',
})}
>
{TemplatePage && <TemplatePage page={page} />}
Expand Down
2 changes: 1 addition & 1 deletion client/services/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export type LoginWithGoogleParams = {

export type RegisterParams = {
name: string;
username: string;
email: string;
username: string;
password: string;
};

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reactive-resume",
"version": "3.6.8",
"version": "3.6.8+1",
"private": true,
"scripts": {
"dev": "env-cmd --silent turbo run dev",
Expand Down
2 changes: 1 addition & 1 deletion schema/src/metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export type PageConfig = {

export type ThemeConfig = {
text: string;
background: string;
primary: string;
background: string;
};

export type TypeCategory = 'heading' | 'body';
Expand Down

0 comments on commit 3a7b98d

Please sign in to comment.