Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tak-hntlabs committed Aug 28, 2024
1 parent b87a234 commit 50c0b8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/stream-metadata/src/routes/profileImage.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { FastifyReply, FastifyRequest } from 'fastify'
import { ChunkedMedia } from '@river-build/proto'
import { StreamPrefix, StreamStateView, makeStreamId } from '@river-build/sdk'
import { z } from 'zod'

import { StreamIdHex } from '../types'
import { getMediaStreamContent, getStream } from '../riverStreamRpcClient'
import { isBytes32String, isValidEthereumAddress } from '../validators'
import { getMediaEncryption } from '../media-encryption'
import { z } from 'zod'

const paramsSchema = z.object({
userId: z.string().min(1, 'userId parameter is required'),
Expand Down
2 changes: 1 addition & 1 deletion packages/stream-metadata/src/routes/userBio.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { FastifyReply, FastifyRequest } from 'fastify'
import { StreamPrefix, StreamStateView, makeStreamId } from '@river-build/sdk'
import { z } from 'zod'

import { getStream } from '../riverStreamRpcClient'
import { isValidEthereumAddress } from '../validators'
import { z } from 'zod'

const paramsSchema = z.object({
userId: z.string().min(1, 'userId parameter is required'),
Expand Down

0 comments on commit 50c0b8f

Please sign in to comment.