Skip to content

Commit

Permalink
Merge pull request #2213 from stakwork/feature/create-flow-token
Browse files Browse the repository at this point in the history
feat: added jwt token
  • Loading branch information
Rassl authored Sep 24, 2024
2 parents b4a9dd6 + b45e560 commit b53fdea
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { useState } from 'react'
import { FormProvider, useForm } from 'react-hook-form'
import { useModal } from '~/stores/useModalStore'
import { useSelectedNode } from '~/stores/useGraphStore'
import { postBountyData } from '~/network/postBounty'
import { useState } from 'react'
import * as React from 'react'
import { useSelectedNode } from '~/stores/useGraphStore'
import { useModal } from '~/stores/useModalStore'
import { CreateBounty } from '../CreateBounty'

export type FormData = {
Expand Down Expand Up @@ -33,7 +32,7 @@ export const Body = () => {
type: 'code_generation',
amount: Number(budget),
workspace_uuid: 'ck9drb84nncjnaefo090',
jwt_token: null,
jwt_token: 'abced-12345',
ref_id: selectedNode?.ref_id as string,
node_data: nodeData,
}
Expand Down

0 comments on commit b53fdea

Please sign in to comment.