Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Jun 13, 2024
1 parent d877b2f commit 9056167
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/platform/src/auto/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function run(program: automation.PulumiFn) {
addTransformationToEnsureUniqueComponentNames();
addTransformationToCheckBucketsHaveMultiplePolicies();

Link.linkable(aws.dynamodb.Table, (db) => {
Link.makeLinkable(aws.dynamodb.Table, (db) => {
return {
properties: { tableName: db.name },
};
Expand Down
2 changes: 1 addition & 1 deletion pkg/platform/src/components/cloudflare/bucket.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ComponentResourceOptions } from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
import { Component, Transform, transform } from "../component";
import { Link } from "..";
import { Link } from "../link.js";

export interface BucketArgs {
/**
Expand Down

0 comments on commit 9056167

Please sign in to comment.