mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-19 16:08:34 +01:00
Enable tsconfig noUncheckedIndexedAccess
This commit is contained in:
@@ -73,7 +73,8 @@ export function sqlFragment(
|
||||
const params: Array<QueryTemplateParam> = [];
|
||||
|
||||
strings.forEach((string, index) => {
|
||||
const value = values[index];
|
||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||||
const value = values[index]!;
|
||||
|
||||
query += string;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user