Skip to content

Commit

Permalink
remove node options
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbroks committed Nov 1, 2024
1 parent 990ef48 commit 984cb97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 0 additions & 2 deletions apps/webservice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,4 @@ ENV AUTH_TRUST_HOST=true
ENV NODE_ENV=production
ENV HOSTNAME=0.0.0.0

ENV NODE_OPTIONS="--require @opentelemetry/auto-instrumentations-node/register"

CMD ["node", "apps/webservice/server.js"]
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ export const TargetPageContent: React.FC<{
}> = ({ workspace, view }) => {
const { filter, setFilter, setView } = useTargetFilter();
const workspaceId = workspace.id;
const targetsAll = api.target.byWorkspaceId.list.useQuery({ workspaceId });
const targetsAll = api.target.byWorkspaceId.list.useQuery({
workspaceId,
limit: 0,
});
const targets = api.target.byWorkspaceId.list.useQuery(
{ workspaceId, filter },
{ placeholderData: (prev) => prev },
Expand Down

0 comments on commit 984cb97

Please sign in to comment.