Skip to content

Commit

Permalink
fix: random cleanup (#822)
Browse files Browse the repository at this point in the history
  • Loading branch information
neurosnap authored May 15, 2024
1 parent 520fcbf commit 7e45f58
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/deploy/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { api, cacheMinTimer, thunks } from "@app/api";
import { call, select } from "@app/fx";
import { createSelector } from "@app/fx";
import { defaultEntity, extractIdFromLink } from "@app/hal";
import { selectOrganizationSelectedId } from "@app/organizations";
import { WebState, schema } from "@app/schema";
import { findSourceById, selectSources } from "@app/source";
import type {
Expand Down Expand Up @@ -139,7 +138,6 @@ export const selectFirstAppByEnvId = createSelector(
export const selectAppsByOrgAsList = createSelector(
selectAppsAsList,
selectEnvironmentsByOrg,
selectOrganizationSelectedId,
(apps, envs) => {
return apps.filter((app) => {
const env = findEnvById(envs, { id: app.environmentId });
Expand Down
2 changes: 1 addition & 1 deletion src/schema/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const defaultDeployApp = (a: Partial<DeployApp> = {}): DeployApp => {
createdAt: now,
updatedAt: now,
deploymentMethod: "",
status: "pending",
status: "unknown",
environmentId: "",
currentConfigurationId: "",
currentDeploymentId: "",
Expand Down

0 comments on commit 7e45f58

Please sign in to comment.