Skip to content

Commit

Permalink
chore: resolve studio warning CW9503 in nanoflow-commons (10.x)
Browse files Browse the repository at this point in the history
  • Loading branch information
vadymv-mendix committed Oct 13, 2023
1 parent 28eac0b commit af1a104
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/jsActions/nanoflow-actions-native/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Fixed

- Resolve studio warning CW9503

## [4.0.0] Nanoflow Commons - 2023-6-9

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import { Base64 } from "js-base64";
// END EXTRA CODE

/**
* @param {string} string
* @param {string} base64
* @returns {Promise.<string>}
*/
export async function Base64Encode(string: string): Promise<string> {
export async function Base64Encode(base64: string): Promise<string> {
// BEGIN USER CODE
return Base64.encode(string);
return Base64.encode(base64);
// END USER CODE
}

0 comments on commit af1a104

Please sign in to comment.