This message was deleted.
# general
s
This message was deleted.
c
this sometimes happens when you scroll up.
did you scoll up?
b
not sure what you mean
c
In the terminal.
Did you scroll up?
b
oh, i think i know what you mean. It isn’t that
w
repository = new aws.ecr.Repository(name, { parent: parent })
Looks like you are passing these args as the second parameter, but they should be the third. I think you want
, {},
in there? (If you are using TypeScript, I would expect this to trigger an error).
new getEcrRepository(name, this)
- probably unrelated - but I suspect
new
is not wanted/needed here.
b
yeah, I guess this is where TS shines. thanks for the help