Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbt committed Jun 9, 2024
1 parent 082dedd commit f8b873c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Make sure you have aws cli installed and have been authenticated using: `https:/
git clone <this repo>
cd lambdas
yarn install
aws sso login
yarn offline

```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,8 @@ export const surveyResponseMapper = ({
} = values;
const { QID16_DO, QID26_DO, QID25 } = labels;

const ethicalGuidelines = additionalGuidelines
? QID25.slice(0, QID25.length - 1)
: undefined;
const ethicalGuidelines = QID25.slice(0, QID25.length - 1);

const generativeAiToolDeclarations = QID26_DO
? QID26_DO.slice(0, QID26_DO.length - 1)
: undefined;
Expand Down

0 comments on commit f8b873c

Please sign in to comment.