Skip to content

Commit

Permalink
fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
neoxelox committed Dec 12, 2024
1 parent 44671a1 commit 93e0c24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 4 additions & 1 deletion apps/infra/src/app/production/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ export const environment = pulumi
{ name: 'DRIVE_DISK', value: 's3' },
{ name: 'ASW_REGION', value: 'eu-central-1' },
{ name: 'S3_BUCKET', value: 'latitude-llm-bucket-production' },
{ name: 'PUBLIC_S3_BUCKET', value: 'latitude-llm-public-bucket-production' },
{
name: 'PUBLIC_S3_BUCKET',
value: 'latitude-llm-public-bucket-production',
},
{ name: 'AWS_ACCESS_KEY', value: awsAccessKey },
{ name: 'AWS_ACCESS_SECRET', value: awsAccessSecret },
{ name: 'DEFAULT_PROJECT_ID', value: defaultProjectId },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@ import { useDocumentParameters } from '$/hooks/useDocumentParameters'
import { Props } from '../index'
import { InputParams } from '../Input'

export function ManualParams({
document,
commit,
prompt,
setPrompt,
}: Props) {
export function ManualParams({ document, commit, prompt, setPrompt }: Props) {
const {
manual: { inputs, setInput },
} = useDocumentParameters({
Expand Down

0 comments on commit 93e0c24

Please sign in to comment.