- Notifications
You must be signed in to change notification settings - Fork1.1k
fix(site): updateuseAgentLogs to make it more testable and add more tests#19126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
d6e00c343d0ca8727bdddd46d14491a6fc1ecbe7b0d13bcdc0f21097abd6553bade97ae11fefdbc3d095550d09ecc7e63279c7ffd43a0d3a982d3e141c5a1242cb73b3a5f7bb35a40df306dbc7f49e55ac2fc7722cabd85855f3ca453894bc9f2b1280865fef930b29a311ac956575366547a2fc818aec30bb008dac38287a013d3b71d051092c4e5cdc105336ce5070d4f353205a1776b87fb018fe7490b0054e9dd217bccc50d43a5ec3e8ecf7741321d15364ca844a74eb62bb20454e3e0b984ef45ce8eed06efc7d09de445d7248ebc7b4f804142cc91bFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -21,6 +21,24 @@ export const Warning: Story = { | ||
| }, | ||
| }; | ||
| export const Destructive: Story = { | ||
| args: { | ||
| variant: "destructive", | ||
| }, | ||
| }; | ||
| export const Info: Story = { | ||
| args: { | ||
| variant: "info", | ||
| }, | ||
| }; | ||
| export const Green: Story = { | ||
| args: { | ||
| variant: "green", | ||
| }, | ||
| }; | ||
Comment on lines +24 to +40 ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Some of our styling for the | ||
| export const SmallWithIcon: Story = { | ||
| args: { | ||
| variant: "default", | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -229,13 +229,12 @@ export function makeUseEmbeddedMetadata( | ||
| manager.getMetadata, | ||
| ); | ||
| conststableMetadataResult=useMemo<UseEmbeddedMetadataResult>(()=>{ | ||
| return{ | ||
| metadata, | ||
| clearMetadataByKey:manager.clearMetadataByKey, | ||
| }; | ||
| },[manager,metadata]); | ||
buenos-nachos marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| returnstableMetadataResult; | ||
| }; | ||
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.