fix: fix conflicts and changes after rebasing
This commit is contained in:
parent
a6694c4f7e
commit
f5450d9b4f
2 changed files with 1 additions and 9 deletions
|
@ -4,19 +4,11 @@ import SwaggerUI from 'swagger-ui-react';
|
||||||
import 'swagger-ui-react/swagger-ui.css';
|
import 'swagger-ui-react/swagger-ui.css';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
<<<<<<< HEAD
|
|
||||||
spec: object;
|
spec: object;
|
||||||
=======
|
|
||||||
spec: object,
|
|
||||||
>>>>>>> 57e420f (feat(api): add swagger docs, /api/user/me GET and PUT endpoints)
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function ReactSwagger({ spec }: Props) {
|
function ReactSwagger({ spec }: Props) {
|
||||||
return <SwaggerUI spec={spec} />;
|
return <SwaggerUI spec={spec} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
export default ReactSwagger;
|
export default ReactSwagger;
|
||||||
=======
|
|
||||||
export default ReactSwagger;
|
|
||||||
>>>>>>> 57e420f (feat(api): add swagger docs, /api/user/me GET and PUT endpoints)
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
import { RedirectButton } from '@/components/buttons/redirect-button';
|
import { RedirectButton } from '@/components/buttons/redirect-button';
|
||||||
import { ThemePicker } from '@/components/misc/theme-picker';
|
import { ThemePicker } from '@/components/misc/theme-picker';
|
||||||
import { useGetApiUserMe } from '@/generated/api/user/user';
|
import { useGetApiUserMe } from '@/generated/api/default/default';
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
const { data, isLoading } = useGetApiUserMe();
|
const { data, isLoading } = useGetApiUserMe();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue