Skip to content

Commit 9d67f9b

Browse files
committed
build: bump version
1 parent fbf5332 commit 9d67f9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/src/rpc/start.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import translationEn from "../customization/translations/en.json";
2626
import translationFr from "../customization/translations/fr.json";
2727

2828
const isAssignable = (fr: typeof translationFr): typeof translationEn => fr;
29-
console.info(isAssignable(translationFr) ?? "isAssignable : true"); // this is just to avoid the TS error : _isAssignable is not used. TODO : use eslint rule instead (no eslint in backend for now)
29+
console.info(isAssignable(translationFr) ? "isAssignable : true" : "isAssignable : false"); // this is just to avoid the TS error : _isAssignable is not used. TODO : use eslint rule instead (no eslint in backend for now)
3030

3131
export async function startRpcService(params: {
3232
oidcParams: OidcParams;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sill",
3-
"version": "1.43.22",
3+
"version": "1.43.23",
44
"license": "MIT",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)