Skip to content

Commit

Permalink
Correct action reference
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikmilk committed Dec 8, 2024
1 parent 2536027 commit 28246e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import CalculateExpression from "~/actions/calculate-expression";
import Dictionary from "~/actions/dictionary";
import GetDictionary from "~/actions/get-dictionary";
import GetDictionaryValue from "~/actions/get-dictionary-value";
import setDictionaryValue from "~/actions/set-dictionary-value";
import SetDictionaryValue from "~/actions/set-dictionary-value";
import GetIpAddress from "~/actions/get-ip-address";
import GetFileFromFolder from "~/actions/get-file-from-folder";
import GetType from "~/actions/get-type";
Expand Down Expand Up @@ -85,7 +85,7 @@ export let actions: ActionDefinitions = {
'dictionary': Dictionary,
'detect.dictionary': GetDictionary,
'getvalueforkey': GetDictionaryValue,
'setvalueforkey': setDictionaryValue,
'setvalueforkey': SetDictionaryValue,
'getipaddress': GetIpAddress,
'documentpicker.open': GetFileFromFolder,
'getitemtype': GetType,
Expand Down

0 comments on commit 28246e1

Please sign in to comment.