Skip to content

Commit

Permalink
fix: goto /settings/transcription instead of /settings
Browse files Browse the repository at this point in the history
  • Loading branch information
braden-w committed Aug 6, 2024
1 parent 8fb4600 commit de8aec5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/app/src/lib/services/TranscriptionServiceGroqLive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const TranscriptionServiceGroqLive = Layer.succeed(
description: 'Please enter your Groq API key in the settings',
action: {
label: 'Go to settings',
goto: '/settings',
goto: '/settings/transcription',
},
});
}
Expand All @@ -31,7 +31,7 @@ export const TranscriptionServiceGroqLive = Layer.succeed(
description: 'The Groq API Key must start with "gsk_"',
action: {
label: 'Update API Key',
goto: '/settings',
goto: '/settings/transcription',
},
});
}
Expand Down
4 changes: 2 additions & 2 deletions apps/app/src/lib/services/TranscriptionServiceWhisperLive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const TranscriptionServiceWhisperLive = Layer.succeed(
description: 'Please enter your OpenAI API key in the settings',
action: {
label: 'Go to settings',
goto: '/settings',
goto: '/settings/transcription',
},
});
}
Expand All @@ -31,7 +31,7 @@ export const TranscriptionServiceWhisperLive = Layer.succeed(
description: 'The OpenAI API Key must start with "sk-"',
action: {
label: 'Update OpenAI API Key',
goto: '/settings',
goto: '/settings/transcription',
},
});
}
Expand Down

0 comments on commit de8aec5

Please sign in to comment.