chore: format
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 54s
CI / Lint & Test (pull_request) Failing after 5m52s
CI / Build Linux (pull_request) Has been skipped
CI / Build Windows (cross-compile) (pull_request) Has been skipped

This commit is contained in:
2026-01-25 23:35:03 -08:00
parent d3bb62210d
commit be25152eea
4 changed files with 6 additions and 16 deletions
+1 -2
View File
@@ -264,8 +264,7 @@ describe("quickActionsStore", () => {
describe("quick action ID generation", () => {
it("generates unique custom action IDs", () => {
const generateId = () =>
`custom-${Date.now()}-${Math.random().toString(36).substring(2, 9)}`;
const generateId = () => `custom-${Date.now()}-${Math.random().toString(36).substring(2, 9)}`;
const id1 = generateId();
const id2 = generateId();