Skip to content

Commit 21321c9

Browse files
committed
Prettier this file
1 parent 585af11 commit 21321c9

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

src/util/config-value-dto.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ import {ConfigValue, ConfigValueType} from '../reforge-common/src/types.js'
77
* @param valueType - The type of the config value
88
* @returns The DTO representation of the config value
99
*/
10-
export function mapConfigValueToDto(
11-
configValue: ConfigValue,
12-
valueType: ConfigValueType,
13-
): Record<string, unknown> {
10+
export function mapConfigValueToDto(configValue: ConfigValue, valueType: ConfigValueType): Record<string, unknown> {
1411
const dto: Record<string, unknown> = {
1512
type: mapValueTypeToString(valueType),
1613
}
@@ -82,4 +79,4 @@ export function mapValueTypeToString(valueType: ConfigValueType): string {
8279
[ConfigValueType.LogLevel]: 'log_level',
8380
}
8481
return mapping[valueType] || 'string'
85-
}
82+
}

0 commit comments

Comments
 (0)