Skip to content

Commit

Permalink
use uuid and not temporal package (#2205)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman authored Jul 12, 2024
1 parent 5e62656 commit a4e910a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/pages/start-workflow.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { uuid4 } from '@temporalio/workflow';
import { onMount } from 'svelte';
import { v4 } from 'uuid';
import { goto } from '$app/navigation';
import { page } from '$app/stores';
Expand Down Expand Up @@ -86,7 +86,7 @@
};
const generateRandomWorkflowId = () => {
workflowId = uuid4();
workflowId = v4();
updateQueryParameters({
parameter: 'workflowId',
value: workflowId,
Expand Down

0 comments on commit a4e910a

Please sign in to comment.