Skip to content

Commit 6b9bce3

Browse files
dhasani23David Hasani
and
David Hasani
authored
fix(amazonq): hide feedback form (aws#6872)
## Problem Hide a feedback form since we haven't gotten the Legal-approved text yet. ## Solution --- - Treat all work as PUBLIC. Private `feature/x` branches will not be squash-merged at release time. - Your code changes must meet the guidelines in [CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines). - License: I confirm that my contribution is made under the terms of the Apache 2.0 license. Co-authored-by: David Hasani <[email protected]>
1 parent 3452a26 commit 6b9bce3

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

packages/amazonq/.changes/next-release/Feature-b5f9e589-3415-4e4e-b7b2-f292b5436ad0.json

-4
This file was deleted.

packages/amazonq/test/e2e/amazonq/transformByQ.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ describe('Amazon Q Code Transformation', function () {
6565
})
6666

6767
describe('Starting a transformation from chat', () => {
68-
it('Can click through all user input forms for a Java upgrade', async () => {
68+
it.skip('Can click through all user input forms for a Java upgrade', async () => {
6969
sinon.stub(startTransformByQ, 'getValidSQLConversionCandidateProjects').resolves([])
7070
sinon.stub(GumbyController.prototype, 'validateLanguageUpgradeProjects' as keyof GumbyController).resolves([
7171
{

packages/core/src/amazonqGumby/chat/controller/messenger/messenger.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,8 @@ export class Messenger {
547547
message === CodeWhispererConstants.viewProposedChangesChatMessage
548548
) {
549549
// get permission to re-run job and view logs after partially successful job is downloaded
550-
this.sendFeedbackFormMessage(tabID)
550+
// TODO: uncomment this when feature is ready
551+
// this.sendFeedbackFormMessage(tabID)
551552
}
552553

553554
this.dispatcher.sendChatMessage(

0 commit comments

Comments
 (0)