diff --git a/webapp/public/map-interface-nationwide.webp b/webapp/public/map-interface-nationwide.webp index feebbc5..c359e37 100644 Binary files a/webapp/public/map-interface-nationwide.webp and b/webapp/public/map-interface-nationwide.webp differ diff --git a/webapp/src/components/NewMapNotice.vue b/webapp/src/components/NewMapNotice.vue index 3640192..28f6edc 100644 --- a/webapp/src/components/NewMapNotice.vue +++ b/webapp/src/components/NewMapNotice.vue @@ -38,10 +38,11 @@ import { ref, computed, onMounted } from 'vue'; const STORAGE_KEY = 'new-map-notice-dismissed'; const comingFromNewMap = document.referrer.includes('maps.deflock.org'); +const isIframe = window.self !== window.top; const show = ref(false); onMounted(() => { - if (!comingFromNewMap && !localStorage.getItem(STORAGE_KEY)) { + if (!comingFromNewMap && !isIframe && !localStorage.getItem(STORAGE_KEY)) { show.value = true; } });