Skip to content

Commit bea0f88

Browse files
committed
fix typo
1 parent 88a0904 commit bea0f88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/amazonqFeatureDev/client/featureDev.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ServiceOptions } from '../../shared/awsClientBuilder'
1010
import globals from '../../shared/extensionGlobals'
1111
import { getLogger } from '../../shared/logger'
1212
import * as FeatureDevProxyClient from './featuredevproxyclient'
13-
import { featureName, startTaskAssisLimitReachedMessage } from '../constants'
13+
import { featureName, startTaskAssistLimitReachedMessage } from '../constants'
1414
import { CodeReference } from '../../amazonq/webview/ui/connector'
1515
import {
1616
ApiError,
@@ -185,7 +185,7 @@ export class FeatureDevClient {
185185
)
186186
if (isAwsError(e)) {
187187
// API Front-end will throw Throttling if conversation limit is reached. API Front-end monitors StartCodeGeneration for throttling
188-
if (e.code === 'ThrottlingException' && e.message.includes(startTaskAssisLimitReachedMessage)) {
188+
if (e.code === 'ThrottlingException' && e.message.includes(startTaskAssistLimitReachedMessage)) {
189189
throw new MonthlyConversationLimitError(e.message)
190190
}
191191
// BE service will throw ServiceQuota if code generation iteration limit is reached

0 commit comments

Comments
 (0)