Skip to content

Commit f2f6473

Browse files
committed
chore: used app nav component
1 parent 8c9170e commit f2f6473

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
export { default as Hero } from "./Hero/Hero.svelte";
22
export { default as IdentityCard } from "./IdentityCard/IdentityCard.svelte";
33
export { default as SettingsNavigationBtn } from "./SettingsNavigationBtn/SettingsNavigationBtn.svelte";
4+
export { default as AppNav } from "./AppNav/AppNav.svelte";
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<script lang="ts">
2-
import { Header } from "$lib/fragments";
2+
import { AppNav } from "$lib/fragments";
33
import { runtime } from "$lib/global/runtime.svelte";
44
55
const { children } = $props();
66
</script>
77

88
<main class="h-[100vh] px-[5vw] pb-[4.5vh]">
9-
<Header title={runtime.header.title ?? ""}/>
9+
<AppNav title={runtime.header.title ?? ""}/>
1010
{@render children?.()}
1111
</main>

infrastructure/w3id/src/utils/uuid.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import { v4 as uuidv4, v5 as uuidv5 } from "uuid";
1010
*/
1111

1212
export function generateUuid(
13-
entropy: string,
14-
namespace: string = uuidv4(),
13+
entropy: string,
14+
namespace: string = uuidv4(),
1515
): string {
16-
return uuidv5(entropy, namespace);
16+
return uuidv5(entropy, namespace);
1717
}

0 commit comments

Comments
 (0)