@ff-labs/pi-fff 0.9.6 → 0.9.7-nightly.03e1a1a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.ts +1 -4
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -944,10 +944,7 @@ export default function fffExtension(pi: ExtensionAPI) {
|
|
|
944
944
|
if (!arg) {
|
|
945
945
|
const mode = getMode();
|
|
946
946
|
const flag = pi.getFlag("fff-mode") ?? "unset";
|
|
947
|
-
ctx.ui.notify(
|
|
948
|
-
`Current mode: '${mode}' (flag: ${flag})`,
|
|
949
|
-
"info",
|
|
950
|
-
);
|
|
947
|
+
ctx.ui.notify(`Current mode: '${mode}' (flag: ${flag})`, "info");
|
|
951
948
|
return;
|
|
952
949
|
}
|
|
953
950
|
|