diff --git a/pkg/arvo/mar/kiln/bump.hoon b/pkg/arvo/mar/kiln/bump.hoon index 766454277..5954006e9 100644 --- a/pkg/arvo/mar/kiln/bump.hoon +++ b/pkg/arvo/mar/kiln/bump.hoon @@ -1,23 +1,13 @@ -|% -+$ bump [except=(set desk) force=_|] --- -|_ b=bump +|_ ~ ++ grad %noun ++ grab |% - ++ noun bump - ++ json - ^- $-(^json bump) - =, dejs:format - %- ot - :~ except+(as so) - force+bo - == + ++ noun ,~ + ++ json ul:dejs:format -- ++ grow |% - ++ noun b + ++ noun ~ + ++ json ~ -- --- - - +-- \ No newline at end of file diff --git a/pkg/grid/src/nav/notifications/BasicNotification.tsx b/pkg/grid/src/nav/notifications/BasicNotification.tsx index 7e7f87ed4..1999323c7 100644 --- a/pkg/grid/src/nav/notifications/BasicNotification.tsx +++ b/pkg/grid/src/nav/notifications/BasicNotification.tsx @@ -88,8 +88,8 @@ export const BasicNotification = ({ notification, lid }: BasicNotificationProps) {contents.length > 0 ? (
- {take(contents, MAX_CONTENTS).map((content) => ( -

+ {take(contents, MAX_CONTENTS).map((content, i) => ( +

))} diff --git a/pkg/grid/src/nav/notifications/SystemNotification.tsx b/pkg/grid/src/nav/notifications/SystemNotification.tsx index 3ab57dd7e..3141e9cd1 100644 --- a/pkg/grid/src/nav/notifications/SystemNotification.tsx +++ b/pkg/grid/src/nav/notifications/SystemNotification.tsx @@ -45,7 +45,7 @@ export const BaseBlockedNotification = () => { const basePike = usePike('base'); const { push } = useHistory(); // TODO: assert weft.name === 'zuse'?? - const newKelvin = basePike?.wefts[0]?.kelvin ?? 418; + const newKelvin = basePike?.wefts[0]?.kelvin ?? 417; const charges = useCharges(); const [blocked] = useKilnState((s) => { const [b, u] = partition(Object.entries(s.pikes), ([, pike]) => pikeIsBlocked(newKelvin, pike)); diff --git a/pkg/grid/src/pages/Grid.tsx b/pkg/grid/src/pages/Grid.tsx index b1d968236..858cae3bf 100644 --- a/pkg/grid/src/pages/Grid.tsx +++ b/pkg/grid/src/pages/Grid.tsx @@ -26,8 +26,8 @@ export const Grid: FunctionComponent = () => { window.location.reload(); } const start = performance.now(); - await useKilnState.getState().fetchVats(); - await useKilnState.getState().fetchVats(); + await useKilnState.getState().fetchPikes(); + await useKilnState.getState().fetchPikes(); if (performance.now() - start > 5000) { attempt(count + 1); } else { diff --git a/pkg/npm/api/hood/lib.ts b/pkg/npm/api/hood/lib.ts index 78f7a1af6..02d868681 100644 --- a/pkg/npm/api/hood/lib.ts +++ b/pkg/npm/api/hood/lib.ts @@ -96,11 +96,11 @@ export function kilnRevive( }; } -export function kilnBump() { +export function kilnBump(): Poke { return { app: 'hood', mark: 'kiln-bump', - json: {} + json: null, }; }