Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
TJKoury committed May 22, 2024
1 parent 632fc9c commit 79c1437
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/assets/app-8c15ef14.js → docs/assets/app-8c468e37.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="HandheldFriendly" content="true" />

<title>SDA TAP LAB</title>
<script type="module" crossorigin src="/assets/app-8c15ef14.js"></script>
<script type="module" crossorigin src="/assets/app-8c468e37.js"></script>
<link rel="stylesheet" href="/assets/index-0790b453.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "spaceaware.io",
"private": true,
"version": "0.0.0+1716381547540",
"version": "0.0.0+1716382412147",
"type": "module",
"scripts": {
"postinstall": "npm run copy:orbpro",
Expand Down
7 changes: 6 additions & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@
import SpaceObjectToolbar from "@/lib/SpaceObjects/Toolbar/Toolbar.svelte";
import { mode } from "./stores/menu.store";
import { title, content } from "@/stores/modal.store";
import { isSafe } from "./stores/dev.store";
if (!isSafe()) {
(window as any).CESIUM_BASE_URL = "./assets/";
}
onMount(() => {
//COIServiceWorker();
fetch("https://celestrak.digitalarsenal.io/get-ip")
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Viewer/Viewer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
timelineContainer: true,
selectionIndicator: true,
requestRenderMode: true,
showRenderLoopErrors: true,// isSafe() ? true : false,
showRenderLoopErrors: isSafe() ? true : false,
bottomContainer: document.createElement("p"),
orderIndependentTranslucency: false,
shadows: true,
Expand Down

0 comments on commit 79c1437

Please sign in to comment.