vendor: update dependency

This commit is contained in:
2025-06-09 10:06:35 +07:00
parent 1b5282b605
commit a791e79319
4 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
import {PromogameGame} from "promogame-player";
import {PromogamePlayer} from "promogame-player";
export default function MainApp() {
const Loading = ({ progress }: { progress: number }) => {
@@ -11,7 +11,7 @@ export default function MainApp() {
return (
<div className={'flex h-dvh w-screen flex-col items-center justify-center'}>
<PromogameGame loadingComponent={Loading} className={'h-full w-full'} apiUrl={import.meta.env.VITE_API_URL} />
<PromogamePlayer loadingComponent={Loading} className={'h-full w-full'} apiUrl={import.meta.env.VITE_API_URL} />
</div>
);
}